now i can add it, i hate git for several reasons this shit is one!

This commit is contained in:
Ulf Gebhardt 2016-02-09 16:19:53 +01:00
parent 77930cbb80
commit 55577d05e9
4 changed files with 20 additions and 0 deletions

5
demo_basic/path/PLIB.php Normal file
View File

@ -0,0 +1,5 @@
<?php
class PLIB extends \SYSTEM\PATH {
public function __construct($subpath = '') {
parent::__construct(new \SYSTEM\PROOT(), 'lib/', $subpath);}
}

View File

@ -0,0 +1,5 @@
<?php
class PPAGE extends \SYSTEM\PATH {
public function __construct($subpath = '') {
parent::__construct(new \SYSTEM\PROOT(), 'basic_demo/page/', $subpath);}
}

5
demo_basic/path/PSAI.php Normal file
View File

@ -0,0 +1,5 @@
<?php
class PSAI extends \SYSTEM\PATH {
public function __construct($subpath = '') {
parent::__construct(new \SYSTEM\PROOT(), 'basic_demo/sai/', $subpath);}
}

5
demo_basic/path/PSQL.php Normal file
View File

@ -0,0 +1,5 @@
<?php
class PSQL extends \SYSTEM\PATH {
public function __construct($subpath = '') {
parent::__construct(new \SYSTEM\PROOT(), 'basic_demo/sql/', $subpath);}
}