array( 'class' => 'ImageARBehavior', 'attribute' => 'image', // this must exist 'extension' => 'png, gif, jpg, jpeg', // possible extensions, comma separated 'prefix' => 'img_', 'relativeWebRootFolder' => 'images/action', // this folder must exist // 'forceExt' => 'png', 'formats' => array( 'preview' => array( 'suffix' => '_preview', 'process' => array( 'resize' => array(796, null), // 'crop' => array(133, 57, 'center'), ), ), 'normal' => array(), ), 'defaultName' => 'default', ), ); } /** * @return string the associated database table name */ public function tableName() { return 'action'; } public $image; /** * @return array validation rules for model attributes. */ public function rules() { // NOTE: you should only define rules for those attributes that // will receive user inputs. return array( array('action_category_id', 'required'), array('action_category_id, rank, is_finished', 'numerical', 'integerOnly' => true), array('link', 'length', 'max' => 64), array('link', 'unique',), array('contactIds', 'safe'), array('image, date_start, date_end', 'safe'), // The following rule is used by search(). // Please remove those attributes that should not be searched. array('id, action_category_id, rank, link, contacts_data, is_finished', 'safe', 'on' => 'search'), array('hidden, code', 'safe'), ); } /** * @return array relational rules. */ public function relations() { // NOTE: you may need to adjust the relation name and the related // class name for the relations automatically generated below. return array( 'actionCategory' => array(self::BELONGS_TO, 'ActionCategory', 'action_category_id'), 'i18ns' => array(self::HAS_MANY, 'ActionI18n', 'id', 'index' => 'lang'), 'i18n' => array(self::HAS_ONE, 'ActionI18n', 'id', 'condition' => 'lang=\'' . Yii::app()->language . '\''), ); } /** * @return array customized attribute labels (name=>label) */ public function attributeLabels() { return array( 'id' => 'ID', 'action_category_id' => 'Категория акции', 'is_finished' => 'Акция завершена', 'rank' => 'Rank', 'link' => 'Псевдоним в адресной строке', 'contactIds' => 'Контакты для отображения в сайдбаре', 'hidden' => 'Страница скрыта', 'image' => 'Фото', 'date_start' => 'Начало акции', 'date_end' => 'Конец акции' ); } /** * Retrieves a list of models based on the current search/filter conditions. * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. */ public function search() { // Warning: Please modify the following code to remove attributes that // should not be searched. $criteria = new CDbCriteria; //// $criteria->compare('id', $this->id); $criteria->compare('action_category_id', $this->action_category_id); $criteria->compare('rank', $this->rank); $criteria->compare('link', $this->link, true); $criteria->compare('contacts_data', $this->contacts_data, true); $criteria->compare('is_finished', $this->is_finished); $sort = new CSort(); $sort->defaultOrder = array( 'rank' => false, ); return new CActiveDataProvider($this, array( 'criteria' => $criteria, 'sort' => $sort, )); } public function save($runValidation = true, $attributes = null) { $r = parent::save($runValidation, $attributes); if (empty($this->link)) { $this->link = $this->id; $this->saveAttributes($this->attributes); } return $r; } public function getContactIds() { return explode(',', $this->contacts_data); } public function setContactIds($value) { if (is_array($value)) $this->contacts_data = implode(',', $value); else $this->contacts_data = $value; } public function getDayLeft(){ if(!empty($this->date_end)) { $datetime1 = new DateTime("now"); $datetime2 = new DateTime($this->date_end); $interval = $datetime1->diff($datetime2); return $interval->format('%d'); } else { return ""; } } public function getStatus(){ if($this->is_finished || !empty($this->date_end) && strtotime($this->date_end) < strtotime(date('Y-m-d'))){ return 'end'; } else { return 'active'; } } }