HEX
Server: Apache/2.4.54 (Debian)
System: Linux a5825d2beacc 4.15.0-197-generic #208-Ubuntu SMP Tue Nov 1 17:23:37 UTC 2022 x86_64
User: root (0)
PHP: 8.1.14
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/table-for-divi/table-for-divi.php
<?php
/*
Plugin Name: Table for Divi
Plugin URI:  https://github.com/wasimhere/table-for-divi
Description: Table for Divi module can be used for simple and complex table layouts without any code
Version:     1.3.0
Author:      Wasim
Author URI:  https://wasimhere.github.io/
License:     GPL2
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: table-for-divi
Domain Path: /languages

*/


if ( ! function_exists( 'tfdt_wp_initialize' ) ):
	
	/**
	 * Creates the extension's main class instance.
	 *
	 * @since 1.0.0
	 */

	//table for divi theme initialize
	function tfdt_wp_initialize() {

		require_once plugin_dir_path( __FILE__ ) . 'includes/TFDT_Initialize.php';

	}

	add_action( 'divi_extensions_init', 'tfdt_wp_initialize' );

endif;