%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/admin/models/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/admin/models/Log.php |
<?php namespace humhub\modules\admin\models; use yii\db\ActiveRecord; /** * This is the model class for table "log". * * @property integer $id * @property integer $level * @property string $category * @property double $log_time * @property string $prefix * @property string $message */ class Log extends ActiveRecord { /** * @inheritdoc */ public static function tableName() { return 'log'; } /** * @inheritdoc */ public function rules() { return [ [['level'], 'integer'], [['log_time'], 'number'], [['prefix', 'message'], 'string'], [['category'], 'string', 'max' => 255] ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'level' => 'Level', 'category' => 'Category', 'log_time' => 'Log Time', 'prefix' => 'Prefix', 'message' => 'Message', ]; } }