| 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/fields/ |
Upload File : |
<?php
/*!
* HTML field functionality.
*
* @since 2.0.0
*
* @package Nav Menu Collapse
* @subpackage HTML Field
*/
if (!defined('ABSPATH'))
{
exit;
}
/**
* Class used to implement the HTML field object.
*
* @since 2.0.0
*
* @uses Nav_Menu_Collapse_Field
*/
final class Nav_Menu_Collapse_Field_HTML extends Nav_Menu_Collapse_Field
{
/**
* Get a default value based on the provided name.
*
* @since 2.0.0
*
* @access protected
* @param string $name Name of the value to return.
* @return mixed Default value if it exists, otherwise an empty string.
*/
protected function _default($name)
{
switch ($name)
{
/**
* Content added to the field.
*
* @since 2.0.0
*
* @var string
*/
case 'content':
return '';
}
return parent::_default($name);
}
/**
* Generate the output for the HTML field.
*
* @since 2.0.0
*
* @access public
* @param boolean $echo True if the HTML field should be echoed.
* @return string Generated HTML field if $echo is false.
*/
public function output($echo = false)
{
$output = '<div class="nmc-html' . $this->_field_classes(false) . '">'
. wpautop(do_shortcode($this->content))
. '</div>';
return parent::_output($output, 'html', $echo);
}
}