new stage

This commit is contained in:
Naeltard 2016-04-03 11:02:37 +02:00
parent 6f12906209
commit 35d067407d
18 changed files with 86 additions and 0 deletions

6
.gitmodules vendored
View File

@ -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

View File

@ -0,0 +1,5 @@
#start_main{
width: 100%;
background: white;
}

View 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);
}
}

View File

@ -0,0 +1,3 @@
function init_start(){
}

View File

@ -0,0 +1,3 @@
<div id="start_main">
${start_content}
</div>

View File

@ -0,0 +1,3 @@
${text}
<br>
<br>

View File

@ -0,0 +1,5 @@
#start_main{
width: 100%;
background: white;
}

View 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);
}
}

View File

@ -0,0 +1,3 @@
function init_start(){
}

View File

@ -0,0 +1,3 @@
<div id="start_main">
${start_content}
</div>

View File

@ -0,0 +1,3 @@
${text}
<br>
<br>

View File

@ -0,0 +1,5 @@
#start_main{
width: 100%;
background: white;
}

View 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);
}
}

View File

@ -0,0 +1,3 @@
function init_start(){
}

View File

@ -0,0 +1,3 @@
<div id="start_main">
${start_content}
</div>

View File

@ -0,0 +1,3 @@
${text}
<br>
<br>

1
lib/lib_bootstrap Submodule

@ -0,0 +1 @@
Subproject commit 61480a2725cc6663f7edecfbffbc1f2983137cb6

1
lib/lib_jquery Submodule

@ -0,0 +1 @@
Subproject commit 5cbffcf4e9a888ee0a80addaf2a68006cc8a7124