コード例 #1
0
ファイル: Xhtml.php プロジェクト: robtuley/knotwerk
 /**
  * Gets the error label markup.
  *
  * @param T_Form_Element $node
  * @return string
  */
 protected function getErrorLabelMarkup(T_Form_Element $node)
 {
     if (!$node->isValid()) {
         $msg = $this->escape($node->getError()->getMessage());
         return " <strong>{$msg}</strong>";
     }
     return '';
 }