コード例 #1
0
ファイル: Button.php プロジェクト: cseufert/hamle
 function getInputAttStatic(&$atts, &$type, &$content)
 {
     parent::getInputAttStatic($atts, $type, $content);
     $atts['type'] = "submit";
 }
コード例 #2
0
ファイル: Checkbox.php プロジェクト: cseufert/hamle
 function getInputAttStatic(&$atts, &$type, &$content)
 {
     parent::getInputAttStatic($atts, $type, $context);
     $atts['type'] = "checkbox";
 }
コード例 #3
0
ファイル: Memo.php プロジェクト: cseufert/hamle
 function getInputAttStatic(&$atts, &$type, &$content)
 {
     parent::getInputAttStatic($atts, $type, $content);
     unset($atts['type']);
 }