403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Old Sites/robotics/wp-content/plugins/types/application/models/information/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Old Sites/robotics/wp-content/plugins/types/application/models/information/table.php
<?php


class Types_Information_Table extends Types_Information_Container {

	protected $template;
	protected $archive;
	protected $views;
	protected $forms;

	/**
	 * @param $message
	 *
	 * @return bool
	 */
	public function add_message( Types_Information_Message $message ) {
		if( $message->get_type() )
			switch( $message->get_type() ) {
				case 'template':
					if( $this->template === null && $message->valid() )
						$this->template[] = $message;
					break;
				case 'archive':
					if( $this->archive === null && $message->valid() )
						$this->archive[] = $message;
					break;
				case 'views':
					if( $this->views === null && $message->valid() )
						$this->views[] = $message;
					break;
				case 'forms':
					if( $this->forms === null && $message->valid() )
						$this->forms[] = $message;
					break;
			}
	}

	public function get_template( $force = false ) {
		$post_type = Types_Helper_Condition::get_post_type();

		if( ! $force ) {
			$allowed_columns = apply_filters( 'types_information_table_columns', array_fill_keys( array( 'template', 'archive', 'views', 'forms' ), '' ), $post_type->name );

			if( ! isset( $allowed_columns['template'] ) )
				return false;
		}
		
		return $this->template;
	}

	public function get_archive( $force = false ) {
		$post_type = Types_Helper_Condition::get_post_type();

		if( ! $force ) {
			$allowed_columns = apply_filters( 'types_information_table_columns', array_fill_keys( array( 'template', 'archive', 'views', 'forms' ), '' ), $post_type->name );

			if( ! isset( $allowed_columns['archive'] ) )
				return false;
		}

		return $this->archive;
	}

	public function get_views() {
		return $this->views;
	}

	public function get_forms() {
		return $this->forms;
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit