This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
2016-04-18 01:43:35 +02:00

12 lines
540 B
PHP

<?php
class default_pokedex extends SYSTEM\PAGE\Page {
public static function js(){
return array( new PPAGE('default_pokedex/js/default_pokedex.js'));}
public static function css(){
return array( new PPAGE('default_pokedex/css/default_pokedex.css'));}
public function html(){
$vars = array();
$vars = array_merge($vars, \SYSTEM\PAGE\text::tag('demo_basic'));
return SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_pokedex/tpl/default_pokedex.tpl'))->SERVERPATH(), $vars);
}
}