????JFIF??x?x????'
Server IP : 104.21.64.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/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! //