Commit 73636462f811e2089b26bb54b4f36c843863d62c
1 parent
e7fecfdb
PT:2492070 : Fist Login wizard added
Committed by: Jarrett Jordaan Reviewed by: Megan Watson
Showing
3 changed files
with
0 additions
and
188 deletions
setup/firstlogin/session.php deleted
| 1 | -<?php | ||
| 2 | -/** | ||
| 3 | -* Session Controller. | ||
| 4 | -* | ||
| 5 | -* KnowledgeTree Community Edition | ||
| 6 | -* Document Management Made Simple | ||
| 7 | -* Copyright (C) 2008, 2009, 2010 KnowledgeTree Inc. | ||
| 8 | -* | ||
| 9 | -* This program is free software; you can redistribute it and/or modify it under | ||
| 10 | -* the terms of the GNU General Public License version 3 as published by the | ||
| 11 | -* Free Software Foundation. | ||
| 12 | -* | ||
| 13 | -* This program is distributed in the hope that it will be useful, but WITHOUT | ||
| 14 | -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
| 15 | -* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
| 16 | -* details. | ||
| 17 | -* | ||
| 18 | -* You should have received a copy of the GNU General Public License | ||
| 19 | -* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 20 | -* | ||
| 21 | -* You can contact KnowledgeTree Inc., PO Box 7775 #87847, San Francisco, | ||
| 22 | -* California 94120-7775, or email info@knowledgetree.com. | ||
| 23 | -* | ||
| 24 | -* The interactive user interfaces in modified source and object code versions | ||
| 25 | -* of this program must display Appropriate Legal Notices, as required under | ||
| 26 | -* Section 5 of the GNU General Public License version 3. | ||
| 27 | -* | ||
| 28 | -* In accordance with Section 7(b) of the GNU General Public License version 3, | ||
| 29 | -* these Appropriate Legal Notices must retain the display of the "Powered by | ||
| 30 | -* KnowledgeTree" logo and retain the original copyright notice. If the display of the | ||
| 31 | -* logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices | ||
| 32 | -* must display the words "Powered by KnowledgeTree" and retain the original | ||
| 33 | -* copyright notice. | ||
| 34 | -* Contributor( s): ______________________________________ | ||
| 35 | -*/ | ||
| 36 | - | ||
| 37 | -/** | ||
| 38 | -* | ||
| 39 | -* @copyright 2008-2010, KnowledgeTree Inc. | ||
| 40 | -* @license GNU General Public License version 3 | ||
| 41 | -* @author KnowledgeTree Team | ||
| 42 | -* @package First Login | ||
| 43 | -* @version Version 0.1 | ||
| 44 | -*/ | ||
| 45 | -class Session extends SessionBase | ||
| 46 | -{ | ||
| 47 | - public $salt = 'firstlogin'; | ||
| 48 | - | ||
| 49 | - /** | ||
| 50 | - * Constructs session object | ||
| 51 | - * | ||
| 52 | - * @author KnowledgeTree Team | ||
| 53 | - * @access public | ||
| 54 | - * @param none | ||
| 55 | - */ | ||
| 56 | - public function __construct() { | ||
| 57 | - $this->setSalt($this->salt); | ||
| 58 | - $this->startSession(); | ||
| 59 | - } | ||
| 60 | - | ||
| 61 | -} | ||
| 62 | -?> | ||
| 63 | \ No newline at end of file | 0 | \ No newline at end of file |
setup/migrate/session.php deleted
| 1 | -<?php | ||
| 2 | -/** | ||
| 3 | -* Session Controller. | ||
| 4 | -* | ||
| 5 | -* KnowledgeTree Community Edition | ||
| 6 | -* Document Management Made Simple | ||
| 7 | -* Copyright (C) 2008, 2009, 2010 KnowledgeTree Inc. | ||
| 8 | -* | ||
| 9 | -* This program is free software; you can redistribute it and/or modify it under | ||
| 10 | -* the terms of the GNU General Public License version 3 as published by the | ||
| 11 | -* Free Software Foundation. | ||
| 12 | -* | ||
| 13 | -* This program is distributed in the hope that it will be useful, but WITHOUT | ||
| 14 | -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
| 15 | -* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
| 16 | -* details. | ||
| 17 | -* | ||
| 18 | -* You should have received a copy of the GNU General Public License | ||
| 19 | -* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 20 | -* | ||
| 21 | -* You can contact KnowledgeTree Inc., PO Box 7775 #87847, San Francisco, | ||
| 22 | -* California 94120-7775, or email info@knowledgetree.com. | ||
| 23 | -* | ||
| 24 | -* The interactive user interfaces in modified source and object code versions | ||
| 25 | -* of this program must display Appropriate Legal Notices, as required under | ||
| 26 | -* Section 5 of the GNU General Public License version 3. | ||
| 27 | -* | ||
| 28 | -* In accordance with Section 7(b) of the GNU General Public License version 3, | ||
| 29 | -* these Appropriate Legal Notices must retain the display of the "Powered by | ||
| 30 | -* KnowledgeTree" logo and retain the original copyright notice. If the display of the | ||
| 31 | -* logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices | ||
| 32 | -* must display the words "Powered by KnowledgeTree" and retain the original | ||
| 33 | -* copyright notice. | ||
| 34 | -* Contributor( s): ______________________________________ | ||
| 35 | -*/ | ||
| 36 | - | ||
| 37 | -/** | ||
| 38 | -* | ||
| 39 | -* @copyright 2008-2010, KnowledgeTree Inc. | ||
| 40 | -* @license GNU General Public License version 3 | ||
| 41 | -* @author KnowledgeTree Team | ||
| 42 | -* @package Migrater | ||
| 43 | -* @version Version 0.1 | ||
| 44 | -*/ | ||
| 45 | -class Session extends SessionBase | ||
| 46 | -{ | ||
| 47 | - public $salt = 'migrate'; | ||
| 48 | - | ||
| 49 | - /** | ||
| 50 | - * Constructs session object | ||
| 51 | - * | ||
| 52 | - * @author KnowledgeTree Team | ||
| 53 | - * @access public | ||
| 54 | - * @param none | ||
| 55 | - */ | ||
| 56 | - public function __construct() { | ||
| 57 | - $this->setSalt($this->salt); | ||
| 58 | - $this->startSession(); | ||
| 59 | - } | ||
| 60 | - | ||
| 61 | -} | ||
| 62 | -?> | ||
| 63 | \ No newline at end of file | 0 | \ No newline at end of file |
setup/wizard/session.php deleted
| 1 | -<?php | ||
| 2 | -/** | ||
| 3 | -* Session Controller. | ||
| 4 | -* | ||
| 5 | -* KnowledgeTree Community Edition | ||
| 6 | -* Document Management Made Simple | ||
| 7 | -* Copyright (C) 2008, 2009, 2010 KnowledgeTree Inc. | ||
| 8 | -* | ||
| 9 | -* This program is free software; you can redistribute it and/or modify it under | ||
| 10 | -* the terms of the GNU General Public License version 3 as published by the | ||
| 11 | -* Free Software Foundation. | ||
| 12 | -* | ||
| 13 | -* This program is distributed in the hope that it will be useful, but WITHOUT | ||
| 14 | -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
| 15 | -* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | ||
| 16 | -* details. | ||
| 17 | -* | ||
| 18 | -* You should have received a copy of the GNU General Public License | ||
| 19 | -* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 20 | -* | ||
| 21 | -* You can contact KnowledgeTree Inc., PO Box 7775 #87847, San Francisco, | ||
| 22 | -* California 94120-7775, or email info@knowledgetree.com. | ||
| 23 | -* | ||
| 24 | -* The interactive user interfaces in modified source and object code versions | ||
| 25 | -* of this program must display Appropriate Legal Notices, as required under | ||
| 26 | -* Section 5 of the GNU General Public License version 3. | ||
| 27 | -* | ||
| 28 | -* In accordance with Section 7(b) of the GNU General Public License version 3, | ||
| 29 | -* these Appropriate Legal Notices must retain the display of the "Powered by | ||
| 30 | -* KnowledgeTree" logo and retain the original copyright notice. If the display of the | ||
| 31 | -* logo is not reasonably feasible for technical reasons, the Appropriate Legal Notices | ||
| 32 | -* must display the words "Powered by KnowledgeTree" and retain the original | ||
| 33 | -* copyright notice. | ||
| 34 | -* Contributor( s): ______________________________________ | ||
| 35 | -*/ | ||
| 36 | - | ||
| 37 | -/** | ||
| 38 | -* | ||
| 39 | -* @copyright 2008-2010, KnowledgeTree Inc. | ||
| 40 | -* @license GNU General Public License version 3 | ||
| 41 | -* @author KnowledgeTree Team | ||
| 42 | -* @package Installer | ||
| 43 | -* @version Version 0.1 | ||
| 44 | -*/ | ||
| 45 | -class Session extends SessionBase | ||
| 46 | -{ | ||
| 47 | - | ||
| 48 | - public $salt = 'installers'; | ||
| 49 | - | ||
| 50 | - /** | ||
| 51 | - * Constructs session object | ||
| 52 | - * | ||
| 53 | - * @author KnowledgeTree Team | ||
| 54 | - * @access public | ||
| 55 | - * @param none | ||
| 56 | - */ | ||
| 57 | - public function __construct() { | ||
| 58 | - $this->setSalt($this->salt); | ||
| 59 | - $this->startSession(); | ||
| 60 | - } | ||
| 61 | - | ||
| 62 | - | ||
| 63 | -} | ||
| 64 | -?> | ||
| 65 | \ No newline at end of file | 0 | \ No newline at end of file |