View config.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Pathes | |
define('INC_PATH', 'inc/'); | |
define('DL_PATH', 'downloads/'); | |
define('PAGE_PATH', 'page/'); | |
define('SLIDE_PATH', 'img/slide/'); | |
// Teeworlds Version | |
define('CURRENT_VERSION', '0.5.2'); | |
View Class: Page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class page { | |
public function show($page='', $id='') { | |
// Variable '$page' wird gespeichert. | |
if($page == ''): | |
$this->page = 'index' | |
else: |