public function rules()
 {
     return array_merge(parent::rules(), array(array('className', 'safe'), array('content', 'safe'), array('content', 'validateContent'), array('properties', 'safe'), array('properties', 'validateProperties')));
 }
Exemple #2
0
 /** Функция преобразует формат даты в соответствии правила модели
  * 
  * @param CModel $Model
  * @param type $DateValue
  * @return type
  */
 static function DateTimeFormat($Model, $DateValue)
 {
     $result = $DateValue;
     if ($DateValue !== '' && $Model instanceof CModel) {
         $arr = array_filter($Model->rules(), function ($rule) {
             if ($rule[1] === 'date') {
                 return $rule;
             }
         });
         if (count((array) $arr) > 0) {
             foreach ($arr as $objrule) {
                 if (in_array($key, explode(',', str_replace(' ', '', $objrule[0])))) {
                     $format = $objrule['format'] === 'yyyy-MM-dd HH:mm:ss' ? $format = 'Y-m-d H:i:s' : ($format = 'Y-m-d');
                     $result = date($format, strtotime($DateValue));
                 }
             }
         }
     }
     return $result;
 }