Sindbad~EG File Manager
<?php
/**
* Prepare and initialize the Jupiter framework.
*
* @package JupiterX\Framework
*
* @since 1.0.0
*/
add_action( 'jupiterx_init', 'jupiterx_define_constants', -1 );
/**
* Define constants.
*
* @since 1.0.0
* @ignore
*
* @return void
*/
function jupiterx_define_constants() {
$theme_data = get_file_data( get_template_directory() . '/style.css', [ 'Version' ], 'jupiterx' );
// Define premium.
if ( ! defined( 'JUPITERX_PREMIUM' ) ) {
define( 'JUPITERX_PREMIUM', true );
}
// Define version.
define( 'JUPITERX_VERSION', array_shift( $theme_data ) );
define( 'JUPITERX_INITIAL_FREE_VERSION', '1.3.0' );
define( 'JUPITERX_NAME', 'Jupiter X' );
define( 'JUPITERX_SLUG', 'jupiterx' );
// Define paths.
if ( ! defined( 'JUPITERX_THEME_PATH' ) ) {
define( 'JUPITERX_THEME_PATH', wp_normalize_path( trailingslashit( get_template_directory() ) ) );
}
define( 'JUPITERX_PATH', JUPITERX_THEME_PATH . 'lib/' );
define( 'JUPITERX_API_PATH', JUPITERX_PATH . 'api/' );
define( 'JUPITERX_ASSETS_PATH', JUPITERX_PATH . 'assets/' );
define( 'JUPITERX_LANGUAGES_PATH', JUPITERX_PATH . 'languages/' );
define( 'JUPITERX_RENDER_PATH', JUPITERX_PATH . 'render/' );
define( 'JUPITERX_TEMPLATES_PATH', JUPITERX_PATH . 'templates/' );
define( 'JUPITERX_STRUCTURE_PATH', JUPITERX_TEMPLATES_PATH . 'structure/' );
define( 'JUPITERX_FRAGMENTS_PATH', JUPITERX_TEMPLATES_PATH . 'fragments/' );
// Define urls.
if ( ! defined( 'JUPITERX_THEME_URL' ) ) {
define( 'JUPITERX_THEME_URL', trailingslashit( get_template_directory_uri() ) );
}
define( 'JUPITERX_URL', JUPITERX_THEME_URL . 'lib/' );
define( 'JUPITERX_API_URL', JUPITERX_URL . 'api/' );
define( 'JUPITERX_ASSETS_URL', JUPITERX_URL . 'assets/' );
define( 'JUPITERX_LESS_URL', JUPITERX_ASSETS_URL . 'less/' );
define( 'JUPITERX_JS_URL', JUPITERX_ASSETS_URL . 'js/' );
define( 'JUPITERX_IMAGE_URL', JUPITERX_ASSETS_URL . 'images/' );
// Define admin paths.
define( 'JUPITERX_ADMIN_PATH', JUPITERX_PATH . 'admin/' );
// Define admin url.
define( 'JUPITERX_ADMIN_URL', JUPITERX_URL . 'admin/' );
define( 'JUPITERX_ADMIN_ASSETS_URL', JUPITERX_ADMIN_URL . 'assets/' );
define( 'JUPITERX_ADMIN_JS_URL', JUPITERX_ADMIN_ASSETS_URL . 'js/' );
// Define helpers.
define( 'JUPITERX_IMAGE_SIZE_OPTION', JUPITERX_SLUG . '_image_sizes' );
}
add_action( 'jupiterx_init', 'jupiterx_load_dependencies', 5 );
/**
* Load dependencies.
*
* @since 1.0.0
* @ignore
*
* @return void
*/
function jupiterx_load_dependencies() {
require_once JUPITERX_API_PATH . 'init.php';
/**
* Fires before Jupiter API loads.
*
* @since 1.0.0
*/
do_action( 'jupiterx_before_load_api' );
$components = [
'api',
'compatibility',
'actions',
'html',
'post-meta',
'image',
'fonts',
'customizer',
'custom-fields',
'template',
'layout',
'header',
'menu',
'widget',
'footer',
'onboarding',
];
if ( class_exists( 'Elementor\Plugin' ) ) {
$components[] = 'elementor';
}
if ( class_exists( 'woocommerce' ) ) {
$components[] = 'woocommerce';
}
if ( class_exists( 'Rocket_Lazyload_Requirements_Check' ) || class_exists( 'WP_Rocket_Requirements_Check' ) ) {
$components[] = 'lazy-load';
}
if ( class_exists( 'Tribe__Events__Main' ) ) {
$components[] = 'events-calendar';
}
// Load the necessary Jupiter components.
jupiterx_load_api_components( $components );
// Add third party styles and scripts compiler support.
jupiterx_add_api_component_support( 'wp_styles_compiler' );
jupiterx_add_api_component_support( 'wp_scripts_compiler' );
/**
* Fires after Jupiter API loads.
*
* @since 1.0.0
*/
do_action( 'jupiterx_after_load_api' );
}
add_action( 'jupiterx_init', 'jupiterx_add_theme_support' );
/**
* Add theme support.
*
* @since 1.0.0
* @ignore
*
* @return void
*/
function jupiterx_add_theme_support() {
add_theme_support( 'title-tag' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption' ) );
// Gutenberg.
add_theme_support( 'wp-block-styles' );
add_theme_support( 'editor-styles' );
// Jupiter specific.
add_theme_support( 'jupiterx-default-styling' );
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-slider' );
add_theme_support( 'woocommerce' );
jupiterx_register_image_sizes();
}
add_action( 'jupiterx_init', 'jupiterx_includes' );
/**
* Include framework files.
*
* @since 1.0.0
* @ignore
*
* @return void
*/
function jupiterx_includes() {
// Include admin.
if ( is_admin() ) {
require_once JUPITERX_ADMIN_PATH . 'tgmpa/class-tgm-plugin-activation.php';
require_once JUPITERX_ADMIN_PATH . 'tgmpa/functions.php';
require_once JUPITERX_ADMIN_PATH . 'assets.php';
require_once JUPITERX_ADMIN_PATH . 'core-install/core-install.php';
require_once JUPITERX_ADMIN_PATH . 'functions.php';
require_once JUPITERX_ADMIN_PATH . 'license-manager.php';
require_once JUPITERX_ADMIN_PATH . 'control-panel/control-panel.php';
require_once JUPITERX_ADMIN_PATH . 'setup-wizard/setup-wizard.php';
require_once JUPITERX_ADMIN_PATH . 'update-plugins/class-update-plugins.php';
require_once JUPITERX_ADMIN_PATH . 'update-plugins/functions.php';
require_once JUPITERX_ADMIN_PATH . 'update-theme/class-update-theme.php';
require_once JUPITERX_ADMIN_PATH . 'notices/survey-notification-bar.php';
require_once JUPITERX_ADMIN_PATH . 'notices/feedback-notification-bar.php';
require_once JUPITERX_ADMIN_PATH . 'welcome/welcome.php';
}
// Include assets.
require_once JUPITERX_ASSETS_PATH . 'assets.php';
// Include renderers.
require_once JUPITERX_RENDER_PATH . 'template-parts.php';
require_once JUPITERX_RENDER_PATH . 'fragments.php';
require_once JUPITERX_RENDER_PATH . 'widget-area.php';
require_once JUPITERX_RENDER_PATH . 'walker.php';
require_once JUPITERX_RENDER_PATH . 'menu.php';
}
add_action( 'admin_menu', 'jupiterx_register_theme_page' );
/**
* Register theme page.
*
* @since 1.0.0
*
* @return void
*/
function jupiterx_register_theme_page() {
add_theme_page( JUPITERX_NAME, JUPITERX_NAME, 'edit_theme_options', JUPITERX_SLUG, function() {
if ( ! jupiterx_has_required_plugins_activated() ) {
include_once JUPITERX_ADMIN_PATH . '/welcome/view.php';
return;
}
include_once JUPITERX_ADMIN_PATH . '/control-panel/views/layout/master.php';
} );
}
/**
* Handles url redirects
*
* @since 1.0.0
* @ignore
*
* @return void
*/
function jupiterx_handle_url_redirects() {
// @codingStandardsIgnoreStart
if ( empty( $_GET['page'] ) ) {
return;
}
if ( 'customize_theme' === $_GET['page'] ) {
wp_redirect( admin_url( '/customize.php' ) );
wp_die();
}
// @codingStandardsIgnoreEnd
}
add_action( 'jupiterx_init', 'jupiterx_load_textdomain' );
/**
* Load text domain.
*
* @since 1.0.0
* @ignore
*
* @return void
*/
function jupiterx_load_textdomain() {
load_theme_textdomain( 'jupiterx', JUPITERX_LANGUAGES_PATH );
}
add_action( 'jupiterx_before_init', 'jupiterx_load_pro', -1 );
/**
* Load pro functions.
*
* @since 1.6.0
*
* @return void
*/
function jupiterx_load_pro() {
require_once trailingslashit( get_template_directory() ) . 'lib/pro/pro.php';
}
/**
* Fires before Jupiter loads.
*
* @since 1.0.0
*/
do_action( 'jupiterx_before_init' );
/**
* Load Jupiter framework.
*
* @since 1.0.0
*/
do_action( 'jupiterx_init' );
/**
* Fires after Jupiter loads.
*
* @since 1.0.0
*/
do_action( 'jupiterx_after_init' );
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists