Changeset 4599 for trunk/modules/matches/controller/matches.admin.php
- Timestamp:
- 08/27/10 23:01:58 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/matches/controller/matches.admin.php
r4506 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) 28 * @link http://www.clansuite.com 29 29 * 30 * @link http://www.clansuite.com 31 * @link http://gna.org/projects/clansuite 30 * @version SVN: $Id: index.module.php 4552 2010-07-05 15:25:44Z vain $ 32 31 */ 33 32 34 33 # Security Handler 35 if(defined('IN_CS') == false)34 if(defined('IN_CS') === false) 36 35 { 37 36 die('Clansuite not loaded. Direct Access forbidden.'); … … 45 44 * @subpackage Matches 46 45 */ 47 class Clansuite_Module_Matches_Admin extends Clansuite_Module_Controller implements Clansuite_Module_Interface46 class Clansuite_Module_Matches_Admin extends Clansuite_Module_Controller 48 47 { 49 public function initializeModule( Clansuite_HttpRequest $request, Clansuite_HttpResponse $response)48 public function initializeModule() 50 49 { 51 50 return; 52 51 } 53 52 … … 112 111 113 112 # display formgenerator object 114 # clansuite_xdebug::printR($form);113 #Clansuite_Debug::printR($form); 115 114 116 115 $form->addElement('submitbutton')->setName('Save'); … … 118 117 119 118 # display form html 120 # clansuite_xdebug::printR($form->render());119 #Clansuite_Debug::printR($form->render()); 121 120 122 121 # assign the html of the form to the view … … 133 132 134 133 # Get Configuration from Injector 135 $config = $this-> injector->instantiate('Clansuite_Config');134 $config = $this->getInjector()->instantiate('Clansuite_Config'); 136 135 137 136 # write config
Note: See TracChangeset
for help on using the changeset viewer.
