Commit fef6ca299a3f6b555fe37dd7b8101c02c0429825
1 parent
39ac0464
Daily Commit.
Committed by: Jarrett Jordaan Reviewed by: Megan Watson
Showing
2 changed files
with
0 additions
and
160 deletions
setup/firstlogin/steps/fsComplete.php deleted
| 1 | -<?php | ||
| 2 | -/** | ||
| 3 | -* Complete Step 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 | - | ||
| 46 | -class fsComplete extends Step { | ||
| 47 | - /** | ||
| 48 | - * Flag if step needs to run silently | ||
| 49 | - * | ||
| 50 | - * @access protected | ||
| 51 | - * @var boolean | ||
| 52 | - */ | ||
| 53 | - protected $silent = true; | ||
| 54 | - | ||
| 55 | - /** | ||
| 56 | - * Returns step state | ||
| 57 | - * | ||
| 58 | - * @author KnowledgeTree Team | ||
| 59 | - * @param none | ||
| 60 | - * @access public | ||
| 61 | - * @return string | ||
| 62 | - */ | ||
| 63 | - function doStep() { | ||
| 64 | - $this->temp_variables = array( | ||
| 65 | - "step_name"=>"complete", | ||
| 66 | - "silent"=>$this->silent); | ||
| 67 | - return $this->doRun(); | ||
| 68 | - } | ||
| 69 | - | ||
| 70 | - function doRun() { | ||
| 71 | - | ||
| 72 | - return 'landing'; | ||
| 73 | - } | ||
| 74 | - | ||
| 75 | - | ||
| 76 | - | ||
| 77 | - public function getErrors() { | ||
| 78 | - return $this->error; | ||
| 79 | - } | ||
| 80 | -} | ||
| 81 | -?> | ||
| 82 | \ No newline at end of file | 0 | \ No newline at end of file |
setup/firstlogin/steps/fsTemplates.php deleted
| 1 | -<?php | ||
| 2 | -/** | ||
| 3 | -* Template Step 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 | - | ||
| 46 | -class fsTemplates extends Step { | ||
| 47 | - /** | ||
| 48 | - * Flag if step needs to run silently | ||
| 49 | - * | ||
| 50 | - * @access protected | ||
| 51 | - * @var boolean | ||
| 52 | - */ | ||
| 53 | - protected $silent = true; | ||
| 54 | - | ||
| 55 | - /** | ||
| 56 | - * Returns step state | ||
| 57 | - * | ||
| 58 | - * @author KnowledgeTree Team | ||
| 59 | - * @param none | ||
| 60 | - * @access public | ||
| 61 | - * @return string | ||
| 62 | - */ | ||
| 63 | - function doStep() { | ||
| 64 | - $this->temp_variables = array( | ||
| 65 | - "step_name"=>"folderstructures", | ||
| 66 | - "silent"=>$this->silent); | ||
| 67 | - return $this->doRun(); | ||
| 68 | - } | ||
| 69 | - | ||
| 70 | - function doRun() { | ||
| 71 | - | ||
| 72 | - return 'landing'; | ||
| 73 | - } | ||
| 74 | - | ||
| 75 | - public function getErrors() { | ||
| 76 | - return $this->error; | ||
| 77 | - } | ||
| 78 | -} | ||
| 79 | -?> | ||
| 80 | \ No newline at end of file | 0 | \ No newline at end of file |