%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/models/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/models/Session.php |
<?php /** * @link https://www.humhub.org/ * @copyright Copyright (c) 2015 HumHub GmbH & Co. KG * @license https://www.humhub.com/licences */ namespace humhub\modules\user\models; use humhub\components\ActiveRecord; /** * This is the model class for table "user_http_session". * * The followings are the available columns in table 'user_http_session': * @property string $id * @property integer $expire * @property integer $user_id * @property string $data * * @package humhub.modules_core.user.models * @since 0.5 * @author Luke */ class Session extends ActiveRecord { /** * @return string the associated database table name */ public static function tableName() { return 'user_http_session'; } public function getUser() { return $this->hasOne(User::class, ['id' => 'user_id']); } }