15 lines
639 B
PHP
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);
|
|
}
|
|
} |