endTag() публичный статический Метод

public static endTag ( $tag )
Пример #1
0
 protected function showTextarea()
 {
     $output = Html::startTag("textarea", $this->attributes);
     $output .= $this->value;
     $output .= Html::endTag("textarea");
     return $output;
 }