Changeset 4599 for trunk/modules/doctrine/controller/doctrine.admin.php
- Timestamp:
- 08/27/10 23:01:58 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/doctrine/controller/doctrine.admin.php
r4567 r4599 24 24 * 25 25 * @license GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". 26 *27 26 * @author Jens-André Koch <vain@clansuite.com> 28 27 * @copyright Jens-André Koch (2005 - onwards) 29 *30 28 * @link http://www.clansuite.com 31 * @link http://gna.org/projects/clansuite32 29 * 33 30 * @version SVN: $Id$ … … 35 32 36 33 //Security Handler 37 if(defined('IN_CS') == false)34 if(defined('IN_CS') === false) 38 35 { 39 36 die('Clansuite not loaded. Direct Access forbidden.'); … … 70 67 * @subpackage Administration 71 68 */ 72 class Clansuite_Module_Doctrine_Admin extends Clansuite_Module_Controller implements Clansuite_Module_Interface69 class Clansuite_Module_Doctrine_Admin extends Clansuite_Module_Controller 73 70 { 74 71 /** … … 80 77 * Module_Doctrine_Admin -> Execute 81 78 */ 82 public function initializeModule( Clansuite_HttpRequest $request, Clansuite_HttpResponse $response)79 public function initializeModule() 83 80 { 84 81 Doctrine_Core::setPath( ROOT_LIBRARIES . 'doctrine/' ); … … 87 84 * Setup Paths depending on a specific module or the core 88 85 */ 89 $bool = $ request->issetParameter('modulename');86 $bool = $this->request->issetParameter('modulename'); 90 87 if(isset($bool)) 91 88 { 92 self::$options = self::setupDoctrinePaths($ request->getParameterFromGet('modulename'));89 self::$options = self::setupDoctrinePaths($this->request->getParameterFromGet('modulename')); 93 90 } 94 91 else … … 182 179 public function action_admin_show() 183 180 { 184 $this-> prepareOutput();181 $this->display(); 185 182 } 186 183
Note: See TracChangeset
for help on using the changeset viewer.
