Fixed time zone calculation issue
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / session / Session.class.php
1 <?php
2 namespace wcf\data\session;
3 use wcf\data\acp\session\ACPSession;
4
5 /**
6 * Represents a session.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2014 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf
12 * @subpackage data.session
13 * @category Community Framework
14 */
15 class Session extends ACPSession {
16 /**
17 * @see \wcf\data\DatabaseObject::$databaseTableName
18 */
19 protected static $databaseTableName = 'session';
20
21 /**
22 * @see \wcf\data\DatabaseObject::$databaseTableIndexName
23 */
24 protected static $databaseTableIndexName = 'sessionID';
25
26 /**
27 * @see \wcf\data\acp\session\ACPSession::supportsPersistentLogins()
28 */
29 public static function supportsPersistentLogins() {
30 return true;
31 }
32 }