Nvd\Crud\Html::endTag PHP Method

endTag() public static method

public static endTag ( $tag )
    public static function endTag($tag)
    {
        return "</{$tag}>";
    }

Usage Example

コード例 #1
0
 protected function showTextarea()
 {
     $output = Html::startTag("textarea", $this->attributes);
     $output .= $this->value;
     $output .= Html::endTag("textarea");
     return $output;
 }