Guest Posted February 9, 2011 Report Share Posted February 9, 2011 Hey ho everybody, at first... i´m the new one So, now to my problem... I try to make my owen modul. A little "flipchart" vor arrivals etc. I read in the devl. documentation that i should begin with the follow: <?php class ModuleTest extends CodonModule { public function index() { echo "We are at index"; } public function pageone() { echo "We are at page one"; } } ?> if i try to call this modul via index.php/Flipcharts i will get the follow error message: Fatal error: Cannot redeclare class ModuleTest in C:\xampp\htdocs\va\core\modules\Flipcharts\Flipcharts.php on line 14 also a little bit funny is: if i try to call only the index.php.... the message go ahead and the complete webpage are broken... Well, im not a native php programer like some of you.... Have anyone some ideas how to fix? Thanks a lot and best regards Moe PS: Sorry for my - maybe - bad english... i´m not a native speaker. i´m from germany Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted February 10, 2011 Administrators Report Share Posted February 10, 2011 Looks like your module class name is Flipcharts.php and then you try to declare the class as MosuleTest within the file. The folder name filename and class name all have to be the same and can only be used one time within the application.so; folder name - > Flipcharts filename - > Flipcharts.php file - > <?php class Flipcharts extends CodonModule { public function index() { echo 'Flipcharts index'; } } Quote Link to comment Share on other sites More sharing options...
Guest Posted February 11, 2011 Report Share Posted February 11, 2011 Yeb, now it works... Ok i didn´t know that the class name must be the same like the modulfile and folder Thanks a lot Quote Link to comment Share on other sites More sharing options...
Guest Posted February 11, 2011 Report Share Posted February 11, 2011 Uhm, next problem.... i try to list something from the Database.... I made the follow "test" function (just to play with some code) public function test($count=3) { $sql = 'SELECT * FROM '. TABLE_PREFIX .'pilots ORDER BY totalpay Limit ' . $count; $res = DB::get_results($sql); if(!$res) return; foreach($res as $row) { //TODO: change the date format to a setting in panel $this->set('pilotid', $row->pilotid); echo "Die PilotenID lautet: " . $pilotid . "<br>"; } } It should show: Die PilotenID lautet: 1 /next line Die PilotenID lautet: 3 /nextline Die PilotenID lautet: 2 /end but it shows: Die PilotenID lautet: /next line Die PilotenID lautet: /nextline Die PilotenID lautet: /end Whats wrong? o0 i got the examplecode from the news module and changed it to list pilots... Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted February 12, 2011 Administrators Report Share Posted February 12, 2011 Try changing your sql syntax to: $sql = "SELECT * FROM ".TABLE_PREFIX."pilots ORDER BY totalpay LIMIT $count"; and also change your variable in your echo echo "Die PilotenID lautet: " . $row->pilotid . "<br>"; the assignment of; $this->set('pilotid', $row->pilotid); will only make the variable available in the template, and also only hold the last peice of data assigned to it through the foreach loop. You would want to assign the complete array to the variable and then break it down in your template. $this->set('pilotid', $res); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.