Notice: Undefined variable: tableName in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 16
".
*
* The followings are the available columns in table '
Notice: Undefined variable: tableName in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 18
':
Notice: Undefined variable: columns in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 19
Warning: Invalid argument supplied for foreach() in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 19
*/
class
Notice: Undefined variable: className in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 23
extends CActiveRecord
{
/**
* @return string the associated database table name
*/
public function tableName()
{
return '
Notice: Undefined variable: tableName in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 30
';
}
/**
* @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(
Notice: Undefined variable: rules in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 41
Warning: Invalid argument supplied for foreach() in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 41
// The following rule is used by search().
// Please remove those attributes that should not be searched.
array('
Notice: Undefined variable: columns in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 46
Warning: array_keys() expects parameter 1 to be array, null given in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 46
Warning: implode(): Invalid arguments passed in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 46
', 'safe', 'on'=>'search'),
);
}
/**
* @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(
Notice: Undefined variable: relations in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 58
Warning: Invalid argument supplied for foreach() in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 58
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
Notice: Undefined variable: labels in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 70
Warning: Invalid argument supplied for foreach() in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 70
);
}
/**
* Retrieves a list of models based on the current search/filter conditions.
*
* Typical usecase:
* - Initialize the model fields with values from filter form.
* - Execute this method to get CActiveDataProvider instance which will filter
* models according to data in model fields.
* - Pass data provider to CGridView, CListView or any similar widget.
*
* @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;
Notice: Undefined variable: columns in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 95
Warning: Invalid argument supplied for foreach() in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 95
return new CActiveDataProvider('
Notice: Undefined variable: className in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 107
', array(
'criteria'=>$criteria,
));
}
/**
* Returns the static model of the specified AR class.
* @return
Notice: Undefined variable: className in /var/www/html/yii/framework/cli/views/shell/model/model.php on line 114
the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
}