TitanFrameworkOption::echoOptionFooterBare PHP Méthode

echoOptionFooterBare() protected méthode

protected echoOptionFooterBare ( $showDesc = true )
    protected function echoOptionFooterBare($showDesc = true)
    {
        if (!$this->echo_wrapper) {
            if ($this->getHidden()) {
                echo '</div>';
            }
            return;
        }
        // Allow overriding for custom styling
        $useCustom = false;
        $useCustom = apply_filters('tf_use_custom_option_footer', $useCustom);
        $useCustom = apply_filters('tf_use_custom_option_footer_' . $this->getOptionNamespace(), $useCustom);
        if ($useCustom) {
            do_action('tf_custom_option_footer', $this);
            do_action('tf_custom_option_footer_' . $this->getOptionNamespace(), $this);
            return;
        }
        ?>
		</td>
		</tr>
		<?php 
    }