Changeset 4599 for trunk/modules/matches/controller/matches.module.php
- Timestamp:
- 08/27/10 23:01:58 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/matches/controller/matches.module.php
r4506 r4599 22 22 * 23 23 * @license GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". 24 * 25 * @author Jens-André Koch <vain@clansuite.com> 26 * @author Florian Wolf <xsign.dll@clansuite.com> 27 * @copyright Jens-André Koch (2005 - onwards), Florian Wolf (2006-2007) 28 * 24 * @author Jens-André Koch <vain@clansuite.com> 25 * @copyright Jens-André Koch (2005 - onwards) 29 26 * @link http://www.clansuite.com 30 * @link http://gna.org/projects/31 27 * 32 28 * @version SVN: $Id$ … … 34 30 35 31 # Security Handler 36 if(defined('IN_CS') == false)32 if(defined('IN_CS') === false) 37 33 { 38 34 die('Clansuite not loaded. Direct Access forbidden.'); … … 46 42 * @subpackage Matches 47 43 */ 48 class Clansuite_Module_Matches extends Clansuite_Module_Controller implements Clansuite_Module_Interface44 class Clansuite_Module_Matches extends Clansuite_Module_Controller 49 45 { 50 public function initializeModule( Clansuite_HttpRequest $request, Clansuite_HttpResponse $response)46 public function initializeModule() 51 47 { 52 48 parent::initModel('matches'); … … 61 57 $matches = Doctrine::getTable('CsMatches')->findAll()->toArray(); 62 58 63 # clansuite_xdebug::printr($matches);59 #Clansuite_Debug::printr($matches); 64 60 65 61 $view = $this->getView();
Note: See TracChangeset
for help on using the changeset viewer.
