コード例 #1
0
ファイル: Submit.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Get attributes
  *
  * @return array
  */
 protected function getAttributes()
 {
     $list = parent::getAttributes();
     $list['type'] = 'submit';
     return $list;
 }
コード例 #2
0
ファイル: Link.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Get attributes
  *
  * @return array
  */
 protected function getAttributes()
 {
     $list = parent::getAttributes();
     return array_merge($list, $this->getLinkAttributes());
 }
コード例 #3
0
ファイル: Regular.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Get attributes
  *
  * @return array
  */
 protected function getAttributes()
 {
     $list = parent::getAttributes();
     $list['onclick'] = 'javascript: ' . $this->getJSCode();
     return $list;
 }