Example #1
0
 /**
  * Get attributes
  *
  * @return array
  */
 protected function getAttributes()
 {
     $list = parent::getAttributes();
     $list['type'] = 'submit';
     return $list;
 }
Example #2
0
 /**
  * Get attributes
  *
  * @return array
  */
 protected function getAttributes()
 {
     $list = parent::getAttributes();
     return array_merge($list, $this->getLinkAttributes());
 }
Example #3
0
 /**
  * Get attributes
  *
  * @return array
  */
 protected function getAttributes()
 {
     $list = parent::getAttributes();
     $list['onclick'] = 'javascript: ' . $this->getJSCode();
     return $list;
 }