Uname:Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64

Base Dir : /var/www/html

User : gavin


403WebShell
403Webshell
Server IP : 68.183.124.220  /  Your IP : 216.73.217.137
Web Server : Apache/2.4.18 (Ubuntu)
System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
User : gavin ( 1000)
PHP Version : 7.0.33-0ubuntu0.16.04.16
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/wp-content/plugins/nav-menu-collapse/includes/plugins/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/wp-content/plugins/nav-menu-collapse/includes/plugins/class-noatice.php
<?php
/*!
 * Noatice plugin functionality.
 *
 * @since 2.0.0
 *
 * @package    Nav Menu Collapse
 * @subpackage Noatice
 */

if (!defined('ABSPATH'))
{
	exit;
}

/**
 * Class used to implement the Noatice functionality.
 *
 * @since 2.0.0
 */
final class Nav_Menu_Collapse_Noatice
{
	/**
	 * Current collection of noatices.
	 *
	 * @since 2.0.0
	 *
	 * @access private static
	 * @var    array
	 */
	private static $_noatices = array();
	
	/**
	 * Add a noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  array $options Options for the noatice.
	 * @return void
	 */
	public static function add($options)
	{
		if (is_array($options))
		{
			self::$_noatices[] = $options;
		}
	}
	
	/**
	 * Generate a noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  array $options Options for the noatice.
	 * @return array          Generated noatice.
	 */
	public static function generate($options)
	{
		return (is_array($options))
		? $options
		: array();
	}
	
	/**
	 * Add a general noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $css_class CSS class applied to the noatice.
	 * @param  string $message   Message displayed in the noatice.
	 * @param  array  $options   Additional options for the noatice.
	 * @return void
	 */
	public static function add_general($css_class, $message, $options = array())
	{
		self::add(self::generate_general($css_class, $message, $options));
	}
	
	/**
	 * Generate a general noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $css_class CSS class applied to the noatice.
	 * @param  string $message   Message displayed in the noatice.
	 * @param  array  $options   Additional options for the noatice.
	 * @return array             Generated general noatice.
	 */
	public static function generate_general($css_class, $message, $options = array())
	{
		if (!is_array($options))
		{
			$options = array();
		}
		
		$options['css_class'] = (empty($css_class))
		? 'noatice-general'
		: $css_class;
		
		$options['message'] = $message;
		
		return $options;
	}
	
	/**
	 * Add an error noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return void
	 */
	public static function add_error($message, $options = array())
	{
		self::add(self::generate_error($message, $options));
	}
	
	/**
	 * Generate an error noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return array           Generated error noatice.
	 */
	public static function generate_error($message, $options = array())
	{
		return self::generate_general('noatice-error', $message, $options);
	}
	
	/**
	 * Add an info noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return void
	 */
	public static function add_info($message, $options = array())
	{
		self::add(self::generate_info($message, $options));
	}
	
	/**
	 * Generate an info noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return array           Generated info noatice.
	 */
	public static function generate_info($message, $options = array())
	{
		return self::generate_general('noatice-info', $message, $options);
	}
	
	/**
	 * Add an success noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return void
	 */
	public static function add_success($message, $options = array())
	{
		self::add(self::generate_success($message, $options));
	}
	
	/**
	 * Generate an success noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return array           Generated success noatice.
	 */
	public static function generate_success($message, $options = array())
	{
		return self::generate_general('noatice-success', $message, $options);
	}
	
	/**
	 * Add an warning noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return void
	 */
	public static function add_warning($message, $options = array())
	{
		self::add(self::generate_warning($message, $options));
	}
	
	/**
	 * Generate an warning noatice.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @param  string $message Message displayed in the noatice.
	 * @param  array  $options Additional options for the noatice.
	 * @return array           Generated warning noatice.
	 */
	public static function generate_warning($message, $options = array())
	{
		return self::generate_general('noatice-warning', $message, $options);
	}
	
	/**
	 * Output the current noatices.
	 *
	 * @since 2.0.0
	 *
	 * @access public static
	 * @return array Current noatices.
	 */
	public static function output()
	{
		$output = self::$_noatices;
		
		self::$_noatices = array();
		
		return $output;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit