????JFIF??x?x????'
Server IP : 104.21.80.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/includes/ |
Upload File : |
<?php /** * Handles hooking CMBRE2 forms/metaboxes into the post/attachement/user screens * and handles hooking in and saving those fields. * * @since 2.0.0 * * @category WordPress_Plugin * @package CMBRE2 * @author WebDevStudios * @license GPL-2.0+ * @link http://webdevstudios.com */ if ( ! defined( 'WPINC' ) ) exit; class CMBRE2_hookup { /** * Metabox Form ID * @var string * @since 0.9.4 */ protected $form_id = 'post'; /** * Array of all hooks done (to be run once) * @var array * @since 2.0.0 */ protected static $hooks_completed = array(); /** * Only allow JS registration once * @var bool * @since 2.0.0 */ protected static $registration_done = false; /** * Metabox Form ID * @var CMBRE2 object * @since 2.0.2 */ protected $cmb; public function __construct( CMBRE2 $cmb ) { $this->cmb = $cmb; $this->hooks(); if ( is_admin() ) { $this->admin_hooks(); } } public function hooks() { // Handle oembed Ajax $this->once( 'wp_ajax_cmbre2_oembed_handler', array( cmbre2_ajax(), 'oembed_handler' ) ); $this->once( 'wp_ajax_nopriv_cmbre2_oembed_handler', array( cmbre2_ajax(), 'oembed_handler' ) ); foreach ( get_class_methods( 'CMBRE2_Show_Filters' ) as $filter ) { add_filter( 'cmbre2_show_on', array( 'CMBRE2_Show_Filters', $filter ), 10, 3 ); } } public function admin_hooks() { $field_types = (array) wp_list_pluck( $this->cmb->prop( 'fields', array() ), 'type' ); $has_upload = in_array( 'file', $field_types ) || in_array( 'file_list', $field_types ); global $pagenow; // register our scripts and styles for cmb $this->once( 'admin_enqueue_scripts', array( __CLASS__, 'register_scripts' ), 8 ); $type = $this->cmb->mb_object_type(); if ( 'post' == $type ) { add_action( 'add_meta_boxes', array( $this, 'add_metaboxes' ) ); add_action( 'add_attachment', array( $this, 'save_post' ) ); add_action( 'edit_attachment', array( $this, 'save_post' ) ); add_action( 'save_post', array( $this, 'save_post' ), 10, 2 ); $this->once( 'admin_enqueue_scripts', array( $this, 'do_scripts' ) ); if ( $has_upload && in_array( $pagenow, array( 'page.php', 'page-new.php', 'post.php', 'post-new.php' ) ) ) { $this->once( 'admin_head', array( $this, 'add_post_enctype' ) ); } } elseif ( 'user' == $type ) { $priority = $this->cmb->prop( 'priority' ); if ( ! is_numeric( $priority ) ) { switch ( $priority ) { case 'high': $priority = 5; break; case 'low': $priority = 20; break; default: $priority = 10; break; } } add_action( 'show_user_profile', array( $this, 'user_metabox' ), $priority ); add_action( 'edit_user_profile', array( $this, 'user_metabox' ), $priority ); add_action( 'user_new_form', array( $this, 'user_new_metabox' ), $priority ); add_action( 'personal_options_update', array( $this, 'save_user' ) ); add_action( 'edit_user_profile_update', array( $this, 'save_user' ) ); add_action( 'user_register', array( $this, 'save_user' ) ); if ( $has_upload && in_array( $pagenow, array( 'profile.php', 'user-edit.php', 'user-add.php' ) ) ) { $this->form_id = 'your-profile'; $this->once( 'admin_head', array( $this, 'add_post_enctype' ) ); } } } /** * Registers scripts and styles for CMBRE2 * @since 1.0.0 */ public static function register_scripts() { if ( self::$registration_done ) { return; } // Only use minified files if SCRIPT_DEBUG is off $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; if ( ! is_admin() ) { // we need to register colorpicker on the front-end //wp_register_script( 'iris', admin_url( 'js/iris.min.js' ), array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), CMBRE2_VERSION ); /*wp_register_script( 'wp-color-picker', admin_url( 'js/color-picker.min.js' ), array( 'iris' ), CMBRE2_VERSION ); wp_localize_script( 'wp-color-picker', 'wpColorPickerL10n', array( 'clear' => 'Clear', 'defaultString' => 'Default', 'pick' => 'Select Color', 'current' => 'Current Color', ) );*/ } //wp_register_script( 'jquery-ui-datetimepicker', cmbre2_utils()->url( 'js/jquery-ui-timepicker-addon.min.js' ), array( 'jquery-ui-slider' ), CMBRE2_VERSION ); // scripts required for cmb $scripts = array( 'jquery', 'jquery-ui-core' /*, 'jquery-ui-datepicker', 'jquery-ui-datetimepicker', 'wp-color-picker'*/ ); // styles required for cmb $styles = array(/* 'wp-color-picker' */); wp_register_script( 'cmbre2-scripts', cmbre2_utils()->url( "js/cmbre2{$min}.js" ), $scripts, CMBRE2_VERSION ); wp_localize_script( 'cmbre2-scripts', 'cmbre2_l10', apply_filters( 'cmbre2_localized_data', array( 'ajax_nonce' => wp_create_nonce( 'ajax_nonce' ), 'ajaxurl' => admin_url( '/admin-ajax.php' ), 'script_debug' => defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG, 'up_arrow_class' => 'dashicons dashicons-arrow-up-alt2', 'down_arrow_class' => 'dashicons dashicons-arrow-down-alt2', 'defaults' => array( 'color_picker' => false, 'date_picker' => array( 'changeMonth' => true, 'changeYear' => true, 'dateFormat' => 'mm/dd/yy', 'dayNames' => explode( ',', 'Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday' ), 'dayNamesMin' => explode( ',', 'Su, Mo, Tu, We, Th, Fr, Sa' ), 'dayNamesShort' => explode( ',', 'Sun, Mon, Tue, Wed, Thu, Fri, Sat' ), 'monthNames' => explode( ',', 'January, February, March, April, May, June, July, August, September, October, November, December' ), 'monthNamesShort' => explode( ',', 'Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec' ), 'nextText' => 'Next', 'prevText' => 'Prev', 'currentText' => 'Today', 'closeText' => 'Done', 'clearText' => 'Clear', ), 'time_picker' => array( 'timeOnlyTitle' => 'Choose Time', 'timeText' => 'Time', 'hourText' => 'Hour', 'minuteText' => 'Minute', 'secondText' => 'Second', 'currentText' => 'Now', 'closeText' => 'Done', 'timeFormat' => 'hh:mm TT', 'controlType' => 'select', 'stepMinute' => 5, ), ), 'strings' => array( 'upload_file' => 'Use this file', 'remove_image' => 'Remove Image', 'remove_file' => 'Remove', 'file' => 'File:', 'download' => 'Download', 'check_toggle' => 'Select / Deselect All', ), ) ) ); wp_register_style( 'cmbre2-styles', cmbre2_utils()->url( "css/cmbre2{$min}.css" ), $styles ); self::$registration_done = true; } /** * Enqueues scripts and styles for CMBRE2 * @since 1.0.0 */ public function do_scripts( $hook ) { // only enqueue our scripts/styles on the proper pages if ( in_array( $hook, array( 'post.php', 'post-new.php', 'page-new.php', 'page.php' ), true ) ) { if ( $this->cmb->prop( 'cmb_styles' ) ) { self::enqueue_cmb_css(); } self::enqueue_cmb_js(); } } /** * Add encoding attribute */ public function add_post_enctype() { echo ' <script type="text/javascript"> jQuery(document).ready(function(){ $form = jQuery("#' . $this->form_id . '"); if ( $form.length ) { $form.attr( { "enctype" : "multipart/form-data", "encoding" : "multipart/form-data" } ); } }); </script>'; } /** * Add metaboxes (to 'post' object type) */ public function add_metaboxes() { if ( ! $this->show_on() ) { return; } foreach ( $this->cmb->prop( 'object_types' ) as $post_type ) { if ( $this->cmb->prop( 'closed' ) ) { add_filter( "postbox_classes_{$post_type}_{$this->cmb->cmb_id}", array( $this, 'close_metabox_class' ) ); } /** * To keep from registering an actual post-screen metabox, * omit the 'title' attribute from the metabox registration array. * * (WordPress will not display metaboxes without titles anyway) * * This is a good solution if you want to output your metaboxes * Somewhere else in the post-screen */ if ( $this->cmb->prop( 'title' ) ) { add_meta_box( $this->cmb->cmb_id, $this->cmb->prop( 'title' ), array( $this, 'post_metabox' ), $post_type, $this->cmb->prop( 'context' ), $this->cmb->prop( 'priority' ) ); } } } /** * Add 'closed' class to metabox * @since 2.0.0 * @param array $classes Array of classes * @return array Modified array of classes */ public function close_metabox_class( $classes ) { $classes[] = 'closed'; return $classes; } /** * Display metaboxes for a post object * @since 1.0.0 */ public function post_metabox() { $this->cmb->show_form( get_the_ID(), 'post' ); } /** * Display metaboxes for new user page * @since 1.0.0 */ public function user_new_metabox( $section ) { if ( $section == $this->cmb->prop( 'new_user_section' ) ) { $object_id = $this->cmb->object_id(); $this->cmb->object_id( isset( $_REQUEST['user_id'] ) ? $_REQUEST['user_id'] : $object_id ); $this->user_metabox(); } } /** * Display metaboxes for a user object * @since 1.0.0 */ public function user_metabox() { if ( 'user' != $this->cmb->mb_object_type() ) { return; } if ( ! $this->show_on() ) { return; } if ( $this->cmb->prop( 'cmb_styles' ) ) { self::enqueue_cmb_css(); } self::enqueue_cmb_js(); $this->cmb->show_form( 0, 'user' ); } /** * Save data from metabox */ public function save_post( $post_id, $post = false ) { $post_type = $post ? $post->post_type : get_post_type( $post_id ); $do_not_pass_go = ( ! $this->cmb->prop( 'save_fields' ) // check nonce || ! isset( $_POST[ $this->cmb->nonce() ] ) || ! wp_verify_nonce( $_POST[ $this->cmb->nonce() ], $this->cmb->nonce() ) // check if autosave || defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE // check user editing permissions || ( 'page' == $post_type && ! current_user_can( 'edit_page', $post_id ) ) || ! current_user_can( 'edit_post', $post_id ) // get the metabox post_types & compare it to this post_type || ! in_array( $post_type, $this->cmb->prop( 'object_types' ) ) ); if ( $do_not_pass_go ) { // do not collect $200 return; } // take a trip to reading railroad – if you pass go collect $200 $this->cmb->save_fields( $post_id, 'post', $_POST ); } /** * Save data from metabox */ public function save_user( $user_id ) { // check permissions if ( ! $this->cmb->prop( 'save_fields' ) // check nonce || ! isset( $_POST[ $this->cmb->nonce() ] ) || ! wp_verify_nonce( $_POST[ $this->cmb->nonce() ], $this->cmb->nonce() ) ) { // @todo more hardening? return; } $this->cmb->save_fields( $user_id, 'user', $_POST ); } /** * Determines if metabox should be shown in current context * @since 2.0.0 * @return bool Whether metabox should be added/shown */ public function show_on() { $show = true; // If metabox is requesting to be conditionally shown if ( is_callable( $this->cmb->prop( 'show_on_cb' ) ) ) { $show = (bool) call_user_func( $this->cmb->prop( 'show_on_cb' ), $this->cmb ); } /** * Filter to determine if metabox should show. Default is true * * @param array $show Default is true, show the metabox * @param mixed $meta_box_args Array of the metabox arguments * @param mixed $cmb The CMBRE2 instance */ $show = (bool) apply_filters( 'cmbre2_show_on', $show, $this->cmb->meta_box, $this->cmb ); return $show; } /** * Ensures WordPress hook only gets fired once * @since 2.0.0 * @param string $action The name of the filter to hook the $hook callback to. * @param callback $hook The callback to be run when the filter is applied. * @param integer $priority Order the functions are executed * @param int $accepted_args The number of arguments the function accepts. */ public function once( $action, $hook, $priority = 10, $accepted_args = 1 ) { $key = md5( serialize( func_get_args() ) ); if ( in_array( $key, self::$hooks_completed ) ) { return; } self::$hooks_completed[] = $key; add_filter( $action, $hook, $priority, $accepted_args ); } /** * Includes CMBRE2 styles * @since 2.0.0 */ public static function enqueue_cmb_css() { if ( ! apply_filters( 'cmbre2_enqueue_css', true ) ) { return false; } self::register_scripts(); return wp_enqueue_style( 'cmbre2-styles' ); } /** * Includes CMBRE2 JS * @since 2.0.0 */ public static function enqueue_cmb_js() { if ( ! apply_filters( 'cmbre2_enqueue_js', true ) ) { return false; } self::register_scripts(); wp_enqueue_media(); return wp_enqueue_script( 'cmbre2-scripts' ); } }