test
This commit is contained in:
parent
d524a90c98
commit
834c03fc21
2
api.php
2
api.php
@ -9,5 +9,5 @@ SYSTEM\system::start($neopolimatrix_config);
|
||||
\SYSTEM\system::register_errorhandler_dbwriter();
|
||||
\SYSTEM\system::register_errorhandler_jsonoutput();
|
||||
|
||||
echo \SYSTEM\API\api::run('\SYSTEM\API\verify','api_rhein',array_merge($_POST,$_GET));
|
||||
echo \SYSTEM\API\api::run('\SYSTEM\API\verify','api_neopolimatrix',array_merge($_POST,$_GET));
|
||||
new \SYSTEM\LOG\COUNTER("API was called sucessfully.");
|
||||
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
$neopolimatrix_config = array( array(config_ids::SYS_CONFIG_ERRORREPORTING, E_ALL | E_STRICT),
|
||||
array(config_ids::SYS_CONFIG_PATH_BASEURL, 'http://www.mojotrollz.eu/web/neopolimatrix'),
|
||||
array(config_ids::SYS_CONFIG_PATH_BASEURL, 'http://mojotrollz.eu/web/neopolimatrix'),
|
||||
array(config_ids::SYS_CONFIG_PATH_BASEPATH, '/home/web/webdir/neopolimatrix/'),
|
||||
array(config_ids::SYS_CONFIG_DB_TYPE, SYSTEM\CONFIG\config_ids::SYS_CONFIG_DB_TYPE_MYS),
|
||||
array(config_ids::SYS_CONFIG_DB_HOST, '127.0.0.1'),
|
||||
@ -9,10 +9,11 @@ $neopolimatrix_config = array( array(config_ids::SYS_CONFIG_ERRORREPORTING,
|
||||
array(config_ids::SYS_CONFIG_DB_PASSWORD, 'dajsabeaisvd345'),
|
||||
array(config_ids::SYS_CONFIG_DB_DBNAME, 'host_neopolimatrix'),
|
||||
array(config_ids::SYS_SAI_CONFIG_NAVIMG, '/web/system/sai/page/img/logo.png'),//not working, cuz paths are not set yet! \SYSTEM\WEBPATH(new \SYSTEM\PSAI(),'page/default_page/img/logo.png')),
|
||||
array(config_ids::SYS_SAI_CONFIG_BASEURL, 'http://www.mojotrollz.eu/web/neopolimatrix/sai.php?'),
|
||||
array(config_ids::SYS_SAI_CONFIG_TITLE, 'Fewo Rhein - Admin Bereich'),
|
||||
array(config_ids::SYS_SAI_CONFIG_COPYRIGHT, '<a href="http://www.fewo-rhein-zwbg.de/" target="_blank">fewo rhein</a> © WebCraft Media 2013'),
|
||||
array(config_ids::SYS_SAI_CONFIG_BASEURL, 'http://mojotrollz.eu/web/neopolimatrix/sai.php?'),
|
||||
array(config_ids::SYS_SAI_CONFIG_TITLE, 'Neopolimatrix - Admin Bereich'),
|
||||
array(config_ids::SYS_SAI_CONFIG_COPYRIGHT, '<a href="" target="_blank"></a> © WebCraft Media 2013'),
|
||||
array(config_ids::SYS_CONFIG_PATH_SYSTEMPATHREL, 'system/'),
|
||||
array(config_ids::SYS_CONFIG_LANGS, array('deDE')),
|
||||
array(config_ids::SYS_CONFIG_DEFAULT_LANG, 'deDE'),
|
||||
array(config_ids::WEBCRAFT_BILLING_TOKEN, ''),
|
||||
array(config_ids::SYS_CRON_LOG2SQLITE_PATH, '/home/web/webdir/neopolimatrix/neopolimatrix/files/log/'));
|
||||
5
neopolimatrix/path/PLIB.php
Normal file
5
neopolimatrix/path/PLIB.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
class PLIB extends \SYSTEM\PATH {
|
||||
public static function getPath(){
|
||||
return \SYSTEM\C_ROOT.'neopolimatrix/lib/'.\SYSTEM\C_SUBPATH;}
|
||||
}
|
||||
5
neopolimatrix/path/PPAGE.php
Normal file
5
neopolimatrix/path/PPAGE.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
class PPAGE extends \SYSTEM\PATH {
|
||||
public static function getPath(){
|
||||
return \SYSTEM\C_ROOT.'neopolimatrix/page/'.\SYSTEM\C_SUBPATH;}
|
||||
}
|
||||
5
neopolimatrix/path/PSAI.php
Normal file
5
neopolimatrix/path/PSAI.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
class PSAI extends \SYSTEM\PATH {
|
||||
public static function getPath(){
|
||||
return \SYSTEM\C_ROOT.'neopolimatrix/sai/'.\SYSTEM\C_SUBPATH;}
|
||||
}
|
||||
2
neopolimatrix/path/register_path_classes.php
Normal file
2
neopolimatrix/path/register_path_classes.php
Normal file
@ -0,0 +1,2 @@
|
||||
<?php
|
||||
SYSTEM\autoload::registerFolder(dirname(__FILE__),'');
|
||||
Loading…
x
Reference in New Issue
Block a user