Файл: silawar.ru/protected/models/ShopSets.php
Строк: 51
<?php
/**
* The followings are the available columns in table 'users':
*/
class ShopSets extends CActiveRecord {
/**
* @return string the associated database table name
*/
public function tableName() {
return 'shop_sets';
}
/**
* @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('id_set, name, min, max, shop', '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(
'items' => array(self::HAS_MANY, 'ShopItems', 'id_set'),
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels() {
return array(
);
}
/**
* Returns the static model of the specified AR class.
* Please note that you should have this exact method in all your CActiveRecord descendants!
* @param string $className active record class name.
* @return Users the static model class
*/
public static function model($className = __CLASS__) {
return parent::model($className);
}
}