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

15 lines
639 B
PHP

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