new stage
This commit is contained in:
parent
6f12906209
commit
35d067407d
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -1,3 +1,9 @@
|
||||
[submodule "lib/system"]
|
||||
path = lib/system
|
||||
url = ../system.git
|
||||
[submodule "lib/lib_bootstrap"]
|
||||
path = lib/lib_bootstrap
|
||||
url = ../lib_bootstrap.git
|
||||
[submodule "lib/lib_jquery"]
|
||||
path = lib/lib_jquery
|
||||
url = ../lib_jquery.git
|
||||
|
||||
5
go_trainer/page/default_guides/css/default_guides.css
Normal file
5
go_trainer/page/default_guides/css/default_guides.css
Normal file
@ -0,0 +1,5 @@
|
||||
#start_main{
|
||||
width: 100%;
|
||||
background: white;
|
||||
}
|
||||
|
||||
12
go_trainer/page/default_guides/default_guides.php
Normal file
12
go_trainer/page/default_guides/default_guides.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
class default_start extends SYSTEM\PAGE\Page {
|
||||
public static function js(){
|
||||
return array( new PPAGE('default_start/js/default_start.js'));}
|
||||
public static function css(){
|
||||
return array( new PPAGE('default_start/css/default_start.css'));}
|
||||
public function html(){
|
||||
$vars = array();
|
||||
$vars = array_merge($vars, \SYSTEM\PAGE\text::tag('demo_basic'));
|
||||
return SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_start/tpl/default_start.tpl'))->SERVERPATH(), $vars);
|
||||
}
|
||||
}
|
||||
3
go_trainer/page/default_guides/js/default_guides.js
Normal file
3
go_trainer/page/default_guides/js/default_guides.js
Normal file
@ -0,0 +1,3 @@
|
||||
function init_start(){
|
||||
|
||||
}
|
||||
3
go_trainer/page/default_guides/tpl/default_guides.tpl
Normal file
3
go_trainer/page/default_guides/tpl/default_guides.tpl
Normal file
@ -0,0 +1,3 @@
|
||||
<div id="start_main">
|
||||
${start_content}
|
||||
</div>
|
||||
3
go_trainer/page/default_guides/tpl/text.tpl
Normal file
3
go_trainer/page/default_guides/tpl/text.tpl
Normal file
@ -0,0 +1,3 @@
|
||||
${text}
|
||||
<br>
|
||||
<br>
|
||||
@ -0,0 +1,5 @@
|
||||
#start_main{
|
||||
width: 100%;
|
||||
background: white;
|
||||
}
|
||||
|
||||
12
go_trainer/page/default_new_guide/default_new_guide.php
Normal file
12
go_trainer/page/default_new_guide/default_new_guide.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
class default_start extends SYSTEM\PAGE\Page {
|
||||
public static function js(){
|
||||
return array( new PPAGE('default_start/js/default_start.js'));}
|
||||
public static function css(){
|
||||
return array( new PPAGE('default_start/css/default_start.css'));}
|
||||
public function html(){
|
||||
$vars = array();
|
||||
$vars = array_merge($vars, \SYSTEM\PAGE\text::tag('demo_basic'));
|
||||
return SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_start/tpl/default_start.tpl'))->SERVERPATH(), $vars);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
function init_start(){
|
||||
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
<div id="start_main">
|
||||
${start_content}
|
||||
</div>
|
||||
3
go_trainer/page/default_new_guide/tpl/text.tpl
Normal file
3
go_trainer/page/default_new_guide/tpl/text.tpl
Normal file
@ -0,0 +1,3 @@
|
||||
${text}
|
||||
<br>
|
||||
<br>
|
||||
5
go_trainer/page/default_pokedex/css/default_guides.css
Normal file
5
go_trainer/page/default_pokedex/css/default_guides.css
Normal file
@ -0,0 +1,5 @@
|
||||
#start_main{
|
||||
width: 100%;
|
||||
background: white;
|
||||
}
|
||||
|
||||
12
go_trainer/page/default_pokedex/default_pokedex.php
Normal file
12
go_trainer/page/default_pokedex/default_pokedex.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
class default_start extends SYSTEM\PAGE\Page {
|
||||
public static function js(){
|
||||
return array( new PPAGE('default_start/js/default_start.js'));}
|
||||
public static function css(){
|
||||
return array( new PPAGE('default_start/css/default_start.css'));}
|
||||
public function html(){
|
||||
$vars = array();
|
||||
$vars = array_merge($vars, \SYSTEM\PAGE\text::tag('demo_basic'));
|
||||
return SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_start/tpl/default_start.tpl'))->SERVERPATH(), $vars);
|
||||
}
|
||||
}
|
||||
3
go_trainer/page/default_pokedex/js/default_pokedex.js
Normal file
3
go_trainer/page/default_pokedex/js/default_pokedex.js
Normal file
@ -0,0 +1,3 @@
|
||||
function init_start(){
|
||||
|
||||
}
|
||||
3
go_trainer/page/default_pokedex/tpl/default_pokedex.tpl
Normal file
3
go_trainer/page/default_pokedex/tpl/default_pokedex.tpl
Normal file
@ -0,0 +1,3 @@
|
||||
<div id="start_main">
|
||||
${start_content}
|
||||
</div>
|
||||
3
go_trainer/page/default_pokedex/tpl/text.tpl
Normal file
3
go_trainer/page/default_pokedex/tpl/text.tpl
Normal file
@ -0,0 +1,3 @@
|
||||
${text}
|
||||
<br>
|
||||
<br>
|
||||
1
lib/lib_bootstrap
Submodule
1
lib/lib_bootstrap
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 61480a2725cc6663f7edecfbffbc1f2983137cb6
|
||||
1
lib/lib_jquery
Submodule
1
lib/lib_jquery
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 5cbffcf4e9a888ee0a80addaf2a68006cc8a7124
|
||||
Reference in New Issue
Block a user