![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/themes/dt-the7/inc/extensions/meta-box/ |
<?php // Prevent loading this file directly defined( 'ABSPATH' ) || exit; // Script version, used to add version for scripts and styles define( 'THE7_RWMB_VER', '4.3.3.1' ); // Define plugin URLs, for fast enqueuing scripts and styles if ( ! defined( 'THE7_RWMB_URL' ) ) define( 'THE7_RWMB_URL', plugin_dir_url( __FILE__ ) ); define( 'THE7_RWMB_JS_URL', trailingslashit( THE7_RWMB_URL . 'js' ) ); define( 'THE7_RWMB_CSS_URL', trailingslashit( THE7_RWMB_URL . 'css' ) ); // Plugin paths, for including files if ( ! defined( 'THE7_RWMB_DIR' ) ) define( 'THE7_RWMB_DIR', plugin_dir_path( __FILE__ ) ); define( 'THE7_RWMB_INC_DIR', trailingslashit( THE7_RWMB_DIR . 'inc' ) ); define( 'THE7_RWMB_FIELDS_DIR', trailingslashit( THE7_RWMB_INC_DIR . 'fields' ) ); define( 'THE7_RWMB_CLASSES_DIR', trailingslashit( THE7_RWMB_INC_DIR . 'classes' ) ); // Optimize code for loading plugin files ONLY on admin side // @see https://www.deluxeblogtips.com/?p=345 // Helper function to retrieve meta value require_once THE7_RWMB_INC_DIR . 'helpers.php'; if ( is_admin() ) { // require_once THE7_RWMB_INC_DIR . 'common.php'; // Field classes foreach ( glob( THE7_RWMB_FIELDS_DIR . '*.php' ) as $file ) { require_once $file; } // Main file require_once THE7_RWMB_CLASSES_DIR . 'meta-box.php'; }