Skip to content

Instantly share code, notes, and snippets.

@taylorlapeyre
Created December 18, 2012 20:22
Show Gist options
  • Save taylorlapeyre/4331599 to your computer and use it in GitHub Desktop.
Save taylorlapeyre/4331599 to your computer and use it in GitHub Desktop.
Gii Generated ImageGallery model class.
<?php
/**
* This is the model class for table "image_galleries".
*
* The followings are the available columns in table 'image_galleries':
* @property integer $gallery_id
* @property string $gallery_name
* @property string $description
* @property integer $default_image_id
*/
class ImageGallery extends CActiveRecord
{
/**
* Returns the static model of the specified AR class.
* @param string $className active record class name.
* @return ImageGallery the static model class
*/
public static function model($className=__CLASS__)
{
return parent::model($className);
}
/**
* @return string the associated database table name
*/
public function tableName()
{
return 'image_galleries';
}
/**
* @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('gallery_name', 'required'),
array('default_image_id', 'numerical', 'integerOnly'=>true),
array('gallery_name', 'length', 'max'=>20),
array('description', 'safe'),
// The following rule is used by search().
// Please remove those attributes that should not be searched.
array('gallery_id, gallery_name, description, default_image_id', '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(
);
}
/**
* @return array customized attribute labels (name=>label)
*/
public function attributeLabels()
{
return array(
'gallery_id' => 'Gallery',
'gallery_name' => 'Gallery Name',
'description' => 'Description',
'default_image_id' => 'Default Image',
);
}
/**
* 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('gallery_id',$this->gallery_id);
$criteria->compare('gallery_name',$this->gallery_name,true);
$criteria->compare('description',$this->description,true);
$criteria->compare('default_image_id',$this->default_image_id);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment