12 lines
540 B
PHP
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);
|
|
}
|
|
} |