Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
<?php
/*
Plugin Name: Quart Core
Description: Plugin that adds all post types needed by our theme
Author: Mikado Themes
Version: 1.2
*/
require_once 'load.php';
add_action( 'after_setup_theme', array( QuartCore\CPT\PostTypesRegister::getInstance(), 'register' ) );
if ( ! function_exists( 'quart_core_activation' ) ) {
/**
* Triggers when plugin is activated. It calls flush_rewrite_rules
* and defines quart_mikado_action_core_on_activate action
*/
function quart_core_activation() {
do_action( 'quart_mikado_action_core_on_activate' );
QuartCore\CPT\PostTypesRegister::getInstance()->register();
flush_rewrite_rules();
}
register_activation_hook( __FILE__, 'quart_core_activation' );
}
if ( ! function_exists( 'quart_core_text_domain' ) ) {
/**
* Loads plugin text domain so it can be used in translation
*/
function quart_core_text_domain() {
load_plugin_textdomain( 'quart-core', false, QUART_CORE_REL_PATH . '/languages' );
}
add_action( 'plugins_loaded', 'quart_core_text_domain' );
}
if ( ! function_exists( 'quart_core_version_class' ) ) {
/**
* Adds plugins version class to body
*
* @param $classes
*
* @return array
*/
function quart_core_version_class( $classes ) {
$classes[] = 'quart-core-' . QUART_CORE_VERSION;
return $classes;
}
add_filter( 'body_class', 'quart_core_version_class' );
}
if ( ! function_exists( 'quart_core_theme_installed' ) ) {
/**
* Checks whether theme is installed or not
* @return bool
*/
function quart_core_theme_installed() {
return defined( 'MIKADO_ROOT' );
}
}
if ( ! function_exists( 'quart_core_visual_composer_installed' ) ) {
/**
* Function that checks if Visual Composer plugin installed
* @return bool
*/
function quart_core_visual_composer_installed() {
return class_exists( 'WPBakeryVisualComposerAbstract' );
}
}
if ( ! function_exists( 'quart_core_is_woocommerce_installed' ) ) {
/**
* Function that checks if woocommerce is installed
* @return bool
*/
function quart_core_is_woocommerce_installed() {
return function_exists( 'is_woocommerce' );
}
}
if ( ! function_exists( 'quart_core_is_woocommerce_integration_installed' ) ) {
//is Mikado Woocommerce Integration installed?
function quart_core_is_woocommerce_integration_installed() {
return defined( 'QUART_CHECKOUT_INTEGRATION' );
}
}
if ( ! function_exists( 'quart_core_is_revolution_slider_installed' ) ) {
function quart_core_is_revolution_slider_installed() {
return class_exists( 'RevSliderFront' );
}
}
if ( ! function_exists( 'quart_core_is_wpml_installed' ) ) {
/**
* Function that checks if WPML plugin is installed
* @return bool
*
* @version 0.1
*/
function quart_core_is_wpml_installed() {
return defined( 'ICL_SITEPRESS_VERSION' );
}
}
if ( ! function_exists( 'quart_core_theme_menu' ) ) {
/**
* Function that generates admin menu for options page.
* It generates one admin page per options page.
*/
function quart_core_theme_menu() {
if ( quart_core_theme_installed() ) {
global $quart_mikado_global_Framework;
quart_mikado_init_theme_options();
$page_hook_suffix = add_menu_page(
esc_html__( 'Quart Options', 'quart-core' ), // The value used to populate the browser's title bar when the menu page is active
esc_html__( 'Quart Options', 'quart-core' ), // The text of the menu in the administrator's sidebar
'administrator', // What roles are able to access the menu
MIKADO_OPTIONS_SLUG, // The ID used to bind submenu items to this menu
array( $quart_mikado_global_Framework->getSkin(), 'renderOptions' ), // The callback function used to render this menu
$quart_mikado_global_Framework->getSkin()->getSkinURI() . '/assets/img/admin-logo-icon.png', // Icon For menu Item
100 // Position
);
foreach ( $quart_mikado_global_Framework->mkdOptions->adminPages as $key => $value ) {
$slug = ! empty( $value->slug ) ? '_tab' . $value->slug : '';
$subpage_hook_suffix = add_submenu_page(
MIKADO_OPTIONS_SLUG,
esc_html__( 'Quart Options - ', 'quart-core' ) . $value->title, // The value used to populate the browser's title bar when the menu page is active
$value->title, // The text of the menu in the administrator's sidebar
'administrator', // What roles are able to access the menu
MIKADO_OPTIONS_SLUG . $slug, // The ID used to bind submenu items to this menu
array( $quart_mikado_global_Framework->getSkin(), 'renderOptions' )
);
add_action( 'admin_print_scripts-' . $subpage_hook_suffix, 'quart_mikado_enqueue_admin_scripts' );
add_action( 'admin_print_styles-' . $subpage_hook_suffix, 'quart_mikado_enqueue_admin_styles' );
};
add_action( 'admin_print_scripts-' . $page_hook_suffix, 'quart_mikado_enqueue_admin_scripts' );
add_action( 'admin_print_styles-' . $page_hook_suffix, 'quart_mikado_enqueue_admin_styles' );
}
}
add_action( 'admin_menu', 'quart_core_theme_menu' );
}
if ( ! function_exists( 'quart_core_theme_menu_backup_options' ) ) {
/**
* Function that generates admin menu for options page.
* It generates one admin page per options page.
*/
function quart_core_theme_menu_backup_options() {
if ( quart_core_theme_installed() ) {
global $quart_mikado_global_Framework;
$slug = "_backup_options";
$page_hook_suffix = add_submenu_page(
MIKADO_OPTIONS_SLUG,
esc_html__( 'Quart Options - Backup Options', 'quart-core' ), // The value used to populate the browser's title bar when the menu page is active
esc_html__( 'Backup Options', 'quart-core' ), // The text of the menu in the administrator's sidebar
'administrator', // What roles are able to access the menu
MIKADO_OPTIONS_SLUG . $slug, // The ID used to bind submenu items to this menu
array( $quart_mikado_global_Framework->getSkin(), 'renderBackupOptions' )
);
add_action( 'admin_print_scripts-' . $page_hook_suffix, 'quart_mikado_enqueue_admin_scripts' );
add_action( 'admin_print_styles-' . $page_hook_suffix, 'quart_mikado_enqueue_admin_styles' );
}
}
add_action( 'admin_menu', 'quart_core_theme_menu_backup_options' );
}
if ( ! function_exists( 'quart_core_theme_admin_bar_menu_options' ) ) {
/**
* Add a link to the WP Toolbar
*/
function quart_core_theme_admin_bar_menu_options( $wp_admin_bar ) {
if ( quart_core_theme_installed() && current_user_can( 'edit_theme_options' ) ) {
global $quart_mikado_global_Framework;
$args = array(
'id' => 'quart-admin-bar-options',
'title' => sprintf( '<span class="ab-icon dashicons-before dashicons-admin-generic"></span> %s', esc_html__( 'Quart Options', 'quart-core' ) ),
'href' => esc_url( admin_url( 'admin.php?page=' . MIKADO_OPTIONS_SLUG ) )
);
$wp_admin_bar->add_node( $args );
foreach ( $quart_mikado_global_Framework->mkdOptions->adminPages as $key => $value ) {
$suffix = ! empty( $value->slug ) ? '_tab' . $value->slug : '';
$args = array(
'id' => 'quart-admin-bar-options-' . $suffix,
'title' => $value->title,
'parent' => 'quart-admin-bar-options',
'href' => esc_url( admin_url( 'admin.php?page=' . MIKADO_OPTIONS_SLUG . $suffix ) )
);
$wp_admin_bar->add_node( $args );
};
}
}
add_action( 'admin_bar_menu', 'quart_core_theme_admin_bar_menu_options', 999 );
}
if ( ! function_exists( 'quart_core_enqueue_our_prettyphoto_scripts_for_theme' ) ) {
/**
* Function that includes our prettyphoto script
*/
function quart_core_enqueue_our_prettyphoto_scripts_for_theme() {
if ( quart_core_theme_installed() && quart_core_visual_composer_installed() ) {
wp_deregister_script( 'prettyphoto' );
wp_enqueue_script( 'prettyphoto', MIKADO_ASSETS_ROOT . '/js/modules/plugins/jquery.prettyPhoto.js', array( 'jquery' ), false, true );
}
}
add_action( 'quart_mikado_action_enqueue_third_party_scripts', 'quart_core_enqueue_our_prettyphoto_scripts_for_theme' );
}
