aboutsummaryrefslogtreecommitdiffstats
path: root/mayor-orig/www/skin/api
diff options
context:
space:
mode:
authorM.Gergo2019-03-08 21:20:34 +0100
committerM.Gergo2019-03-08 21:20:34 +0100
commitf51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 (patch)
treee13e60e4b94a3b58f1e2bfbe271102c8f04b67bd /mayor-orig/www/skin/api
parentc76a004b0135786f2742283f8d5f917106f58bd8 (diff)
downloadmayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.tar.gz
mayor-f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0.zip
további rendrakás
Diffstat (limited to 'mayor-orig/www/skin/api')
-rw-r--r--mayor-orig/www/skin/api/base/html/alert.phtml13
-rw-r--r--mayor-orig/www/skin/api/base/html/base.phtml11
2 files changed, 0 insertions, 24 deletions
diff --git a/mayor-orig/www/skin/api/base/html/alert.phtml b/mayor-orig/www/skin/api/base/html/alert.phtml
deleted file mode 100644
index fe4c54e4..00000000
--- a/mayor-orig/www/skin/api/base/html/alert.phtml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-
- function html_alert() {
- // global $ALERT_MSG; // jelenleg nem használjuk
- if (isset($_SESSION['alert'])===true && is_array($_SESSION['alert'] === true && count($_SESSION['alert'])>0)) {
- var_dump($_SESSION['alert']);
- return false; // ne jelenjen meg az oldal
- } else {
- return true; // nincs hiba
- }
- }
-
-?>
diff --git a/mayor-orig/www/skin/api/base/html/base.phtml b/mayor-orig/www/skin/api/base/html/base.phtml
deleted file mode 100644
index 34ca652f..00000000
--- a/mayor-orig/www/skin/api/base/html/base.phtml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-
- function html_base($sessionID,$policy,$page,$sub,$f,$lang,$skin,$MENU) {
- global $_JSON;
- @header("Content-Type: application/json; charset=utf-8");
- define('_UNIQUE', uniqid()); //--TODO GLOBAL
- page($page,$sub,$f,$lang,$skin,$policy);
- echo json_encode($_JSON);
- }
-
-?>