Domain: antoinekatan.com
Server Adress: 10.127.20.23

privdayz.com

/home/xdxuekl/www/wp-content/themes/quart/framework/admin/meta-boxes/
Dosya Yükle :
Current File : /home/xdxuekl/www/wp-content/themes/quart/framework/admin/meta-boxes/mkdf-meta-boxes-setup.php

<?php

if ( ! function_exists( 'quart_mikado_meta_boxes_map_after_setup_theme' ) ) {
	function quart_mikado_meta_boxes_map_after_setup_theme() {
		/**
		 * Loades all meta-boxes by going through all folders that are placed directly in meta-boxes folder
		 * and loads map.php file in each.
		 *
		 * @see http://php.net/manual/en/function.glob.php
		 */
		do_action( 'quart_mikado_action_before_meta_boxes_map' );
		
		foreach ( glob( MIKADO_FRAMEWORK_ROOT_DIR . '/admin/meta-boxes/*/map.php' ) as $meta_box_load ) {
			include_once $meta_box_load;
		}
		
		do_action( 'quart_mikado_action_meta_boxes_map' );
		
		do_action( 'quart_mikado_action_after_meta_boxes_map' );
	}
	
	add_action( 'after_setup_theme', 'quart_mikado_meta_boxes_map_after_setup_theme', 1 );
}

if ( ! function_exists( 'quart_mikado_meta_boxes_map_init' ) ) {
    function quart_mikado_meta_boxes_map_init() {

        do_action( 'quart_mikado_action_meta_boxes_map_on_init_action' );

    }

    add_action( 'init', 'quart_mikado_meta_boxes_map_init', 1 );
}

coded by Privdayz.com - Visit https://privdayz.com/ for more php shells.