| 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
/*!
* Submit field functionality.
*
* @since 2.0.0
*
* @package Nav Menu Collapse
* @subpackage Submit Field
*/
if (!defined('ABSPATH'))
{
exit;
}
/**
* Class used to implement the submit field object.
*
* @since 2.0.0
*
* @uses Nav_Menu_Collapse_Field
*/
final class Nav_Menu_Collapse_Field_Submit 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)
{
/**
* Additional actions added next to the submit button.
*
* @since 2.0.3
*
* @var string
*/
case 'additional_actions':
return '';
/**
* Label for the submit button.
*
* @since 2.0.0
*
* @var string
*/
case 'button_label':
return __('Submit', 'nav-menu-collapse');
}
return parent::_default($name);
}
/**
* Generate the output for the submit field.
*
* @since 2.0.3 Added additional actions functionality.
* @since 2.0.0
*
* @access public
* @param boolean $echo True if the submit field should be echoed.
* @return string Generated submit field if $echo is false.
*/
public function output($echo = false)
{
return parent::_output
(
'<div class="nmc-field-actions">'
. '<button' . $this->input_attributes . ' type="submit" disabled="disabled" class="button button-large button-primary nmc-button' . $this->_field_classes(false) . '"><span>' . $this->button_label . '</span></button>'
. $this->additional_actions
. '</div>',
'submit',
$echo
);
}
}