. * * * █████╗ ██████╗ ████████╗██╗ ██╗██╗ ██╗██████╗ * ██╔══██╗██╔══██╗╚══██╔══╝██║ ██║██║ ██║██╔══██╗ * ███████║██████╔╝ ██║ ███████║██║ ██║██████╔╝ * ██╔══██║██╔══██╗ ██║ ██╔══██║██║ ██║██╔══██╗ * ██║ ██║██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ██║ * ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ * * ██████╗ █████╗ ██████╗ ███████╗ ██████╗ ██╗███╗ ██╗██╗ ██╗ █████╗ ███╗ ██╗ * ██╔════╝ ██╔══██╗██╔══██╗██╔════╝██╔════╝ ██║████╗ ██║╚██╗ ██╔╝██╔══██╗████╗ ██║ * ██║ ███╗███████║██████╔╝█████╗ ██║ ███╗██║██╔██╗ ██║ ╚████╔╝ ███████║██╔██╗ ██║ * ██║ ██║██╔══██║██╔══██╗██╔══╝ ██║ ██║██║██║╚██╗██║ ╚██╔╝ ██╔══██║██║╚██╗██║ * ╚██████╔╝██║ ██║██║ ██║███████╗╚██████╔╝██║██║ ╚████║ ██║ ██║ ██║██║ ╚████║ * ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═╝╚═╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ * */ /** * Prevent Direct Access * * @since 0.1 */ defined( 'ABSPATH' ) or die( "Restricted access!" ); /** * Define global constants * * @since 4.1 */ defined( 'ALLMT_DIR' ) or define( 'ALLMT_DIR', dirname( plugin_basename( __FILE__ ) ) ); defined( 'ALLMT_BASE' ) or define( 'ALLMT_BASE', plugin_basename( __FILE__ ) ); defined( 'ALLMT_URL' ) or define( 'ALLMT_URL', plugin_dir_url( __FILE__ ) ); defined( 'ALLMT_PATH' ) or define( 'ALLMT_PATH', plugin_dir_path( __FILE__ ) ); defined( 'ALLMT_TEXT' ) or define( 'ALLMT_TEXT', 'all-meta-tags' ); defined( 'ALLMT_SLUG' ) or define( 'ALLMT_SLUG', 'all-meta-tags' ); defined( 'ALLMT_PREFIX' ) or define( 'ALLMT_PREFIX', 'allmetatags' ); defined( 'ALLMT_SETTINGS' ) or define( 'ALLMT_SETTINGS', 'allmetatags' ); defined( 'ALLMT_NAME' ) or define( 'ALLMT_NAME', 'All Meta Tags' ); defined( 'ALLMT_VERSION' ) or define( 'ALLMT_VERSION', get_file_data( __FILE__, array( 'Version' ) ) ); /** * Load the plugin modules * * @since 4.0 */ require_once( ALLMT_PATH . 'inc/php/core.php' ); require_once( ALLMT_PATH . 'inc/php/enqueue.php' ); require_once( ALLMT_PATH . 'inc/php/version.php' ); require_once( ALLMT_PATH . 'inc/php/functional.php' ); require_once( ALLMT_PATH . 'inc/php/page.php' ); require_once( ALLMT_PATH . 'inc/php/messages.php' ); require_once( ALLMT_PATH . 'inc/php/uninstall.php' );