| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/thelittlebigshow/wp-content/plugins/robo-gallery/cmbre2/ |
Upload File : |
<?php
/**
* Bootstraps the CMBRE2 process
*
* @category WordPress_Plugin
* @package CMBRE2
* @author WebDevStudios
* @license GPL-2.0+
* @link http://webdevstudios.com
*/
if ( ! defined( 'WPINC' ) ) exit;
/**
* Fires when CMBRE2 is included/loaded
*
* Should be used to to add metaboxes. See example-functions.php
*/
do_action( 'cmbre2_init' );
/**
* For back-compat. Does the dirtywork of instantiatiating all the
* CMBRE2 instances for the cmbre2_meta_boxes filter
* @since 2.0.2
*/
$all_meta_boxes_config = apply_filters( 'cmbre2_meta_boxes', array() );
foreach ( (array) $all_meta_boxes_config as $meta_box_config ) {
new CMBRE2( $meta_box_config );
}
/**
* Fires after all CMBRE2 instances are created
*/
do_action( 'cmbre2_init_before_hookup' );
/**
* Get all created metaboxes, and instantiate CMBRE2_hookup
* on metaboxes which require it.
* @since 2.0.2
*/
foreach ( CMBRE2_Boxes::get_all() as $cmb ) {
if ( $cmb->prop( 'hookup' ) ) {
$hookup = new CMBRE2_hookup( $cmb );
}
}
/**
* Fires after CMBRE2 initiation process has been completed
*/
do_action( 'cmbre2_after_init' );
// End. That's it, folks! //