Included new Path objects

This commit is contained in:
Ulf Gebhardt 2016-05-30 22:34:39 +02:00
parent 8029f1f9e0
commit 6cbcca90cf
3 changed files with 15 additions and 0 deletions

5
danube/path/PPAGE.php Normal file
View File

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

5
danube/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(), 'danube/sai/', $subpath);}
}

5
danube/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(), 'danube/sql/', $subpath);}
}