mirror of
https://github.com/humhub/humhub.git
synced 2025-02-25 03:34:10 +01:00
102 lines
3.0 KiB
PHP
102 lines
3.0 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* HumHub
|
||
|
* Copyright © 2014 The HumHub Project
|
||
|
*
|
||
|
* The texts of the GNU Affero General Public License with an additional
|
||
|
* permission and of our proprietary license can be found at and
|
||
|
* in the LICENSE file you have received along with this program.
|
||
|
*
|
||
|
* According to our dual licensing model, this program can be used either
|
||
|
* under the terms of the GNU Affero General Public License, version 3,
|
||
|
* or under a proprietary license.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* This is the model class for table "module_enabled".
|
||
|
*
|
||
|
* The table holds all enabled application modules.
|
||
|
*
|
||
|
* The followings are the available columns in table 'module_enabled':
|
||
|
* @property string $module_id
|
||
|
*
|
||
|
* @package humhub.models
|
||
|
* @since 0.5
|
||
|
*/
|
||
|
class ModuleEnabled extends HActiveRecord {
|
||
|
|
||
|
/**
|
||
|
* Returns the static model of the specified AR class.
|
||
|
* @param string $className active record class name.
|
||
|
* @return ModuleEnabled 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 'module_enabled';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @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('module_id', 'required'),
|
||
|
array('module_id', 'length', 'max' => 100),
|
||
|
// The following rule is used by search().
|
||
|
// Please remove those attributes that should not be searched.
|
||
|
array('module_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(
|
||
|
'module_id' => 'Module',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 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('module_id', $this->module_id, true);
|
||
|
|
||
|
return new CActiveDataProvider($this, array(
|
||
|
'criteria' => $criteria,
|
||
|
));
|
||
|
}
|
||
|
|
||
|
}
|