%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/plugins/siteorigin-panels/inc/ |
Current File : /var/www/html/ceaa/wp-content/plugins/siteorigin-panels/inc/sidebars-emulator.php |
<?php class SiteOrigin_Panels_Sidebars_Emulator { private $all_posts_widgets; function __construct() { $this->all_posts_widgets = array(); add_action( 'widgets_init', array( $this, 'register_widgets' ), 99 ); add_filter( 'sidebars_widgets', array( $this, 'add_widgets_to_sidebars' ) ); } /** * Get the single instance. * * @return SiteOrigin_Panels_Sidebars_Emulator */ static function single() { static $single; return empty( $single ) ? $single = new self() : $single; } /** * @param string $name The name of the function * @param array $args * * @return mixed */ function __call( $name, $args ) { // Check if this is a filter option call preg_match( '/filter_option_widget_(.+)/', $name, $opt_matches ); if ( ! empty( $opt_matches ) && count( $opt_matches ) > 1 ) { $opt_name = $opt_matches[1]; global $wp_widget_factory; foreach ( $wp_widget_factory->widgets as $widget_class => $widget ) { if ( $widget->id_base != $opt_name ) { continue; } foreach ( $this->all_posts_widgets as $post_widgets ) { foreach ( $post_widgets as $widget_instance ) { if ( empty( $widget_instance['panels_info']['class'] ) ) { continue; } $instance_class = $widget_instance['panels_info']['class']; if ( $instance_class == $widget_class ) { //The option value uses only the widget id number as keys preg_match( '/-([0-9]+$)/', $widget_instance['id'], $num_match ); $args[0][ $num_match[1] ] = $widget_instance; } } } } return $args[0]; } } /** * Register all the current widgets so we can filter the get_option('widget_...') values to add instances */ function register_widgets() { // Get the ID of the current post $post_id = url_to_postid( add_query_arg( false, false ) ); if ( empty( $post_id ) ) { // Maybe this is the home page $current_url_path = parse_url( add_query_arg( false, false ), PHP_URL_PATH ); $home_url_path = parse_url( trailingslashit( home_url() ), PHP_URL_PATH ); if ( $current_url_path === $home_url_path && get_option( 'page_on_front' ) != 0 ) { $post_id = absint( get_option( 'page_on_front' ) ); } } if ( empty( $post_id ) ) { return; } $panels_data = get_post_meta( $post_id, 'panels_data', true ); $widget_option_names = $this->get_widget_option_names( $post_id, $panels_data, 1 ); $widget_option_names = array_unique( $widget_option_names ); foreach ( $widget_option_names as $widget_option_name ) { add_filter( 'option_' . $widget_option_name, array( $this, 'filter_option_' . $widget_option_name ) ); } } /** * Recursivly get all widget option names from $panels_data and store widget instances in $this->all_posts_widgets. * * @param int|string $post_id * @param array $panels_data * @param int $start This keeps track of recursive depth * * @return array A list of widget option names from the post and its Layout Builder widgets. */ private function get_widget_option_names( $post_id, $panels_data, $start = 1 ) { global $wp_widget_factory; if( empty( $panels_data ) || empty( $panels_data[ 'widgets' ] ) ) { return array(); } if( empty( $this->all_posts_widgets[ $post_id ] ) ) { $this->all_posts_widgets[ $post_id ] = array(); } $widget_option_names = array(); $widgets = $panels_data['widgets']; foreach ( $widgets as $i => $widget_instance ) { if ( empty( $widget_instance['panels_info']['class'] ) ) { continue; } if( $widget_instance['panels_info']['class'] === 'SiteOrigin_Panels_Widgets_Layout' ) { // Add the widget option names from the layout widget $widget_option_names = array_merge( $widget_option_names, $this->get_widget_option_names( $post_id, $widget_instance[ 'panels_data' ], ++$start ) ); } $id_val = $post_id . strval( ( 10000 * $start ) + intval( $i ) ); $widget_class = $widget_instance['panels_info']['class']; if ( ! empty( $wp_widget_factory->widgets[ $widget_class ] ) ) { $widget = $wp_widget_factory->widgets[ $widget_class ]; $widget_instance['id'] = $widget->id_base . '-' . $id_val; $widget_option_names[] = $widget->option_name; } $this->all_posts_widgets[ $post_id ][] = $widget_instance; } return $widget_option_names; } /** * Add a sidebar for SiteOrigin Panels widgets so they are correctly detected by is_active_widget * * @param $sidebars_widgets * * @return array */ function add_widgets_to_sidebars( $sidebars_widgets ) { if ( empty( $this->all_posts_widgets ) ) { return $sidebars_widgets; } foreach ( array_keys( $this->all_posts_widgets ) as $post_id ) { $post_widgets = $this->all_posts_widgets[ $post_id ]; foreach ( $post_widgets as $widget_instance ) { if ( empty( $widget_instance['id'] ) ) { continue; } //Sidebars widgets and the global $wp_registered widgets use full widget ids as keys $siteorigin_panels_widget_ids[] = $widget_instance['id']; } if ( ! empty( $siteorigin_panels_widget_ids ) ) { $sidebars_widgets[ 'sidebar-siteorigin_panels-post-' . $post_id ] = $siteorigin_panels_widget_ids; } } return $sidebars_widgets; } } SiteOrigin_Panels_Sidebars_Emulator::single();