예제 #1
0
 /**
  * Renders the element widget returning html
  *
  * @param array|null $attributes
  * @return string
  * @throws Exception
  */
 public function render($attributes = null)
 {
     if (is_array($attributes) === false && is_null($attributes) === false) {
         throw new Exception('Invalid parameter type.');
     }
     return Tag::numericField($this->prepareAttributes($attributes));
 }
예제 #2
0
파일: Tag.php 프로젝트: mattvb91/cphalcon
 public static function numericField($parameters)
 {
     return parent::numericField($parameters);
 }