예제 #1
0
파일: Checkbox.php 프로젝트: kingsj/core
 /**
  * prepareAttributes
  *
  * @param array $attrs Field attributes to prepare
  *
  * @return array
  */
 protected function prepareAttributes(array $attrs)
 {
     $attrs = parent::prepareAttributes($attrs);
     if ($this->isChecked()) {
         $attrs['checked'] = 'checked';
     }
     return $attrs;
 }