コード例 #1
0
ファイル: TextField.php プロジェクト: picon/picon-framework
 protected function onComponentTag(ComponentTag $tag)
 {
     $this->checkComponentTag($tag, 'input');
     $this->checkComponentTagAttribute($tag, 'type', $this->getTypeAttribute());
     parent::onComponentTag($tag);
     $tag->put('value', $this->getValue());
 }
コード例 #2
0
ファイル: TextArea.php プロジェクト: picon/picon-framework
 protected function onComponentTag(ComponentTag $tag)
 {
     $tag->setTagType(new XmlTagType(XmlTagType::OPEN));
     $this->checkComponentTag($tag, 'textarea');
     parent::onComponentTag($tag);
 }