| Server IP : 60.247.133.247 / Your IP : 216.73.217.108 Web Server : Apache System : Linux ebs-119054 5.10.0-14-amd64 #1 SMP Debian 5.10.113-1 (2022-04-29) x86_64 User : goodwill ( 65985) PHP Version : 8.2.20 Disable Function : link,symlink,passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server,pcntl_fork,pcntl_rfork MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/wwwroot/goodwill/wwwroot/wp-content/themes/GoodWill/inc/ |
Upload File : |
<?php
/**
* Sidebar columns layout parser.
*
* @package The7
*/
defined( 'ABSPATH' ) || exit;
/**
* Class The7_Sidebar_Layout_Parser
*/
class The7_Sidebar_Layout_Parser {
protected $widgets_count = 0;
protected $columns = array();
protected $columns_count = 0;
public function __construct( $columns_layout = '' ) {
$this->columns = $this->parse_columns( $columns_layout );
$this->columns_count = count( $this->columns );
}
public function get_columns() {
return $this->columns;
}
public function get_columns_count() {
return $this->columns_count;
}
protected function parse_columns( $columns_layout = '' ) {
if ( ! $columns_layout ) {
return array();
}
return array_map( array( $this, 'get_column_class' ), explode( '+', $columns_layout ) );
}
protected function get_column_class( $string = '' ) {
$clear_string = trim( $string );
$clear_string = str_replace( '/', '-', $clear_string );
return 'wf-' . $clear_string;
}
public function filter_dynamic_sidebar_params( $params = array() ) {
if ( isset( $this->columns[ $this->widgets_count ] ) ) {
$this->flush_default_widgets_cache();
$column = $this->columns[ $this->widgets_count ];
$params[0]['before_widget'] = preg_replace('/(class=[\'"])(.*?)([\'"])/', '$1$2 wf-cell ' . $column . '$3', $params[0]['before_widget']);
if ( $this->widgets_count >= ( $this->columns_count - 1 ) ) {
$this->widgets_count = 0;
} else {
$this->widgets_count++;
}
}
return $params;
}
public function add_sidebar_columns() {
add_filter( 'dynamic_sidebar_params', array( $this, 'filter_dynamic_sidebar_params' ) );
}
public function remove_sidebar_columns() {
remove_filter( 'dynamic_sidebar_params', array( $this, 'filter_dynamic_sidebar_params' ) );
}
private function flush_default_widgets_cache() {
wp_cache_delete('widget_recent_comments', 'widget');
wp_cache_delete('widget_recent_posts', 'widget');
}
}