From f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 Mon Sep 17 00:00:00 2001
From: M.Gergo
Date: Fri, 8 Mar 2019 21:20:34 +0100
Subject: további rendrakás
---
mayor-orig/www/skin/blue/base/html/base.phtml | 401 --------------------------
1 file changed, 401 deletions(-)
delete mode 100644 mayor-orig/www/skin/blue/base/html/base.phtml
(limited to 'mayor-orig/www/skin/blue/base/html')
diff --git a/mayor-orig/www/skin/blue/base/html/base.phtml b/mayor-orig/www/skin/blue/base/html/base.phtml
deleted file mode 100644
index ebe1161b..00000000
--- a/mayor-orig/www/skin/blue/base/html/base.phtml
+++ /dev/null
@@ -1,401 +0,0 @@
- base.php
- putValidXHTML()
-*/
-
- require('skin/blue/base/color_schemes.php');
- if (!defined('__COLOR_SCHEME') || !is_array($_COLOR_SCHEMES[__COLOR_SCHEME]))
- $_COLORS = $_COLOR_SCHEMES['blue'];
- else
- $_COLORS = $_COLOR_SCHEMES[__COLOR_SCHEME];
-
-
-// -------------------------------------------------------------------
-// html_base() : a html oldal szerkezete
-// -------------------------------------------------------------------
-
-function html_base($sessionID,$policy,$page,$sub,$f,$lang,$skin,$MENU) {
-
- _httpHeader();
-
- if ($MENU['set'][$policy][$page][$sub][$f]['refresh'] > 0) {
- @header("Refresh:".intval($MENU['set'][$policy][$page][$sub][$f]['refresh']));
- }
-
- html_head($page,$sub,$f,$lang,$skin);
- _debugLayer();
- html_mayor_head($sessionID,$page,$sub,$f,$lang,$MENU,$skin);
- echo '
';
- $_defaultPageLayout = ($_SESSION['pageLayout']==0) ? 'leftpad' : 'toppad';
- echo '';
- page($page,$sub,$f,$lang,$skin,$policy);
- echo '
';
- html_mayor_foot();
-}
-
-// -------------------------------------------------------------------
-// html_head() : html fejlec kiirasa
-// -------------------------------------------------------------------
-
-function html_head($page,$sub,$f,$lang,$skin) {
-
- global $INCLUDES, $SSSHH, $SSSBB;
-
- if ($f == '') $f = $page;
- ## ----------------------------------------------
- ## Note http://hixie.ch/advocacy/xhtml
- ## But this is crazy! Using Doctype sniffing instead...
- ## Also read: http://www.mozilla.org/docs/web-developer/faq.html
- ## header('Content-type: application/xhtml+xml');
- ## -----------------------------------------------
-
- // debug üzenetek layer-ének lezárása
-// if (defined('__START_DEBUG') && __START_DEBUG === true) echo "\n";
-
- echo ''."\n";
- echo ''."\n";
- echo ''."\n";
- echo ''."\n";
- echo ''."\n";
- echo '';
- if (defined('_SITE')) echo ' - '._SITE.' - ';
- echo _MAIN_TITLE;
- echo '.';
- echo _MAYORREV;
- echo ''."\n";
- includeCSS($page,$sub,$f,$skin);
- includeCSS($page,$sub,$f,$skin,'handheld'); // install css for handheld devices
- includeJS($page,$sub,$f,$skin);
- if (is_string($SSSHH) && $SSSHH!='') echo $SSSHH;
-
- if (is_array(@$INCLUDES['html_head']['global'])) foreach ($INCLUDES['html_head']['global'] as $key => $include) {
- if (file_exists("skin/$skin/$include")) {
- include("skin/$skin/$include");
- } elseif (file_exists('skin/'._DEFAULT_SKIN.'/'.$include)) {
- include('skin/'._DEFAULT_SKIN.'/'.$include);
- }
- }
- if (is_array(@$INCLUDES['html_head'][$page])) foreach ($INCLUDES['html_head'][$page] as $key => $include) {
- if (file_exists("skin/$skin/$include")) {
- include("skin/$skin/$include");
- } elseif (file_exists('skin/'._DEFAULT_SKIN.'/'.$include)) {
- include('skin/'._DEFAULT_SKIN.'/'.$include);
- }
- }
- echo ''."\n";
- echo "\n\n";
- if (is_string($SSSBB) && $SSSBB!='') echo $SSSBB;
-
-}
-
-// -------------------------------------------------------------------
-// mayor_menu(): a menü kiiratása
-// -------------------------------------------------------------------
-
-function mayor_menu($MENU,$sessionID,$lang = _DEFAULT_LANG,$skin = _DEFAULT_SKIN) {
-
- global $policy, $page, $sub, $f, $LANGUAGES, $SKINSSHOW, $_COLORS;
-
- echo ''."\n";
- if (is_array($MENU)) {
- $active_page=false;
- foreach ($MENU as $aModule => $pItems) {
- if ($aModule != 'modules') {
- for ($i = 0; $i < count($pItems); $i++) {
- if ($page == $aModule and
- ( $active_page===false && ( $_SERVER["REQUEST_URI"]=='/' || (!isset($pItems[$i]['url'])) || strpos($_SERVER["REQUEST_URI"],$pItems[$i]['url']) !== false || strpos($pItems[$i]['url'],"page=$page") !== false) )
- ) {
- echo '- ';
- $active_page=true;
- } else {
- echo '
- ';
- }
- if (isset($pItems[$i]['url']) && $pItems[$i]['url'] != '') {
- if ($pItems[$i]['url'][0] == '&') $href = href("index.php?page=$aModule".$pItems[$i]['url']);
- elseif (substr($pItems[$i]['url'],0,4) == 'http') $href = href($pItems[$i]['url'], array());
- elseif (isset($pItems[$i]['get']) && is_array($pItems[$i]['get'])) $href = href($pItems[$i]['url'], $pItems[$i]['get']);
- else $href = href($pItems[$i]['url']);
- } else {
- $href = href("index.php?page=$aModule");
- }
- echo ''
- .$pItems[$i]['txt']
- .''."\n";
- // --- sub ---
-
- @$pageArray = $MENU['modules'][$aModule];
-
- if (is_array($pageArray) && count($pageArray)>0) {
- echo '
'."\n";
- foreach ($pageArray as $aSub => $sItems) {
- if ($aSub != 'sub') {
- for ($j=0;$j'; $activeSub = true;
- } else {
- echo '- '; $activeSub = false;
- }
- if (isset($sItems[$j]['url']) && $sItems[$j]['url'] != '') {
- if ($sItems[$j]['url'][0] == '&') $href = href("index.php?page=$aModule&f=$aSub".$sItems[$j]['url']);
- elseif (substr($sItems[$j]['url'],0,4) == 'http') $href = href($sItems[$j]['url'], array());
- elseif (isset($sItems[$j]['get']) && is_array($sItems[$j]['get'])) $href = href($sItems[$j]['url'], $sItems[$j]['get']);
- else $href = href($sItems[$j]['url']);
- } else {
- $href = href("index.php?page=$aModule&f=$aSub",array('policy','sessionID','lang','skin'));
- }
- @$subArray = $MENU['modules'][$aModule]['sub'][$aSub];
- if (!is_array($subArray) || count($subArray) == 0) {
- echo ''
- .$sItems[$j]['txt'].'';
- } else { // vannak al-al menúk (f - menü)
- echo '«'
- .$sItems[$j]['txt'].'';
- // -- f menü --
- echo ''."\n"; // fmenu
- } // vannak al-al menük (f -menü)
-
- echo '
'."\n"; // almenü-pont vége (sub)
- } // for - on sItems
- } // ha nem sub == aSub
- } // foreach pageArray
- echo '
'."\n"; // submenu
- } // vannak almenük (sub)
- echo ' '."\n"; // menüpont vége (page)
- } // for - on pItems
- } // ha aModule != 'modules'
- } // foreach on MENU
- }
- echo '-  
';
- echo '
'."\n";
-
- $loginout_img = _svgLoginout(array('print'=>false, 'color' => $_COLORS['login']));
- $down_svg = _svgDown(array('print'=>false, 'color' => $_COLORS['login']));
- // ------------------------
-
- echo '';
- echo '- ';
- if (!defined('_SCHOOL_NAME')) define('_SCHOOL_NAME',_SITE/*.' - '._MAIN_TITLE.'.'._MAYORREV*/);
- echo ''._SCHOOL_NAME.'';
-
- if ($policy == 'public') {
- echo '';
- } else {
- echo '
'.$down_svg.'
'._USERCN.'';
- echo '
';
- echo $loginout_img;
- echo '';
- echo '
';
- echo '
';
- echo '
'._USERCN.'
';
- echo '
'._USERACCOUNT.'
';
- echo '
';
- echo '
';
- formBegin();
- /* Némi javascipt támogatás a session kezelésre ebben a formban */
- $sessionMaxIdleTime=$sessionAlertTime=0;
- if ((_SESSIONID!='' && _POLICY!='public') && defined('_SESSION_MAX_IDLE_TIME') && _SESSION_MAX_IDLE_TIME>0) {
- $sessionMaxIdleTime=((_SESSION_MAX_IDLE_TIME*1000*60*60)+1000);
- if (defined('_SESSION_ALERT_TIME')) $sessionAlertTime = ((_SESSION_MAX_IDLE_TIME*1000*60*60)-(_SESSION_ALERT_TIME*1000*60));
- }
- echo '
';
- echo '
';
- /* --- */
- formEnd();
- echo '
';
- echo '
';
- } // policy != punlic
-//var_dump(substr($_SERVER["REQUEST_URI"],0,strpos($_SERVER["REQUEST_URI"],'sessionID=')));
-
- echo ' ';
- echo '
';
-
-
-}
-
-// -------------------------------------------------------------------
-// html_mayor_head() : fejlec kiirasa (logo+menu+lastupdated)
-// -------------------------------------------------------------------
-
-function html_mayor_head($sessionID,$page,$sub,$f,$lang,$MENU,$skin = _DEFAULT_SKIN) {
-
- global $INCLUDES, $INSTALLED_MODULES, $LANGUAGES, $SKINS, $SKINSSHOW, $policy, $SCHOOL_LOGO, $SCHOOL_IDENTITY, $SCHOOL_URL, $NAV;
-
-
- _updateWindow();
- _keyHelp();
-
- //if (date('m')==12) $imgextra = '-santa'; else $imgextra = '';
- if (defined('_HOME_LOGO') && file_exists(_HOME_LOGO)) $HOME_LOGO=_HOME_LOGO;
- elseif (!file_exists($HOME_LOGO = 'skin/'.$skin.'/base/img/mayor_small_ssl'.$imgextra.'.png'))
- $HOME_LOGO = 'skin/'._DEFAULT_SKIN.'/base/img/mayor_small_ssl'.$imgextra.'.png';
-
- if (defined('_HOME_LOGO_BADGE') && file_exists(_HOME_LOGO_BADGE)) $HOME_LOGO_BADGE=_HOME_LOGO_BADGE;
-// elseif (!file_exists($HOME_LOGO = 'skin/'.$skin.'/base/img/mayor_small_ssl'.$imgextra.'.png'))
-// $HOME_LOGO = 'skin/'._DEFAULT_SKIN.'/base/img/mayor_small_ssl'.$imgextra.'.png';
-
-echo '';
-
- echo "\n";
- echo '';
- echo '
';
-
- $db = 0; $max = __MAX_MENU; // Az egy sorba megjeleníthető menüpontok maximális száma
- if (is_array($NAV[1])) foreach ($NAV[1] as $N1) {
- $txt = '';
- $i = intval($N1['index']);
- if (isset($N1['sub'])) {
- if (!isset($N1['f'])) {
- $M = $MENU['modules'][ $N1['page'] ][ $N1['sub'] ][ $i ];
- } else {
- $M = $MENU['modules'][ $N1['page'] ]['sub'][ $N1['sub'] ][ $N1['f'] ][ $i ];
- }
- } elseif (isset($N1['f'])) {
- $M = $MENU['modules'][ $N1['page'] ][ $N1['f'] ][ $i ];
- } else {
- $M = $MENU[$N1['page']][ $i ];
- }
- $txt = $M['txt'];
- $url = $M['url'];
- $get = $M['get'];
- if (isset($get)) $href = href( isset($url)?$url:'index.php?page='.$N1['page'].'&sub='.$N1['sub'].'&f='.$N1['f'], $get);
- else $href = href( isset($url)?$url:'index.php?page='.$N1['page'].'&sub='.$N1['sub'].'&f='.$N1['f']);
-
- if ($db<$max) {
- if ($page == $N1['page'] && $sub == $N1['sub'] && (!isset($N1['f']) || $f == $N1['f'])) $class = ' class="aktiv" '; else $class = '';
- } else {
- if ($page == $N1['page'] && $sub == $N1['sub'] && (!isset($N1['f']) || $f == $N1['f'])) $class = ' class="openable aktiv" '; else $class = ' class="openable" ';
- $style = ' style="display: none;" ';
- }
-
- if ($txt != '') { // Hibás hivatkozás ne rontsa el a menüt!
- if ($db == $max) echo '
∇Δ';
- echo '
';
- echo $txt;
- echo '';
- $db++;
- }
-
-
- }
- echo '
';
- echo '
'."\n\n";
-
- mayor_menu($MENU,$sessionID,$lang,$skin);
- echo '';
- echo '';
- if ($HOME_LOGO_BADGE!='') echo '';
- echo '';
-
-
- echo "\n";
- $_defaultPageLayout = ($_SESSION['pageLayout']==0) ? 'vertical' : 'horizontal';
- echo '';
-// echo '
X';
- if (is_array($NAV[2])) {
- echo '
';
- foreach ($NAV[2] as $N2) {
- $txt = '';
- $i = intval($N2['index']);
- if (isset($N2['sub'])) {
- if (!isset($N2['f'])) {
- $M = $MENU['modules'][ $N2['page'] ][ $N2['sub'] ][ $i ];
- } else {
- $M = $MENU['modules'][ $N2['page'] ]['sub'][ $N2['sub'] ][ $N2['f'] ][ $i ];
- }
- } elseif (isset($N2['f'])) {
- $M = $MENU['modules'][ $N2['page'] ][ $N2['f'] ][ $i ];
- } else {
- $M = $MENU[$N2['page']][ $i ];
- }
- $txt = $M['txt'];
- $url = $M['url'];
- $get = $M['get'];
- if (isset($get)) $href = href( isset($url)?$url:'index.php?page='.$N2['page'].'&sub='.$N2['sub'].'&f='.$N2['f'], $get);
- else $href = href( isset($url)?$url:'index.php?page='.$N2['page'].'&sub='.$N2['sub'].'&f='.$N2['f']);
-
- if ($page == $N2['page'] && $sub == $N2['sub'] && (!isset($N2['f']) || $f == $N2['f'])) $class = ' class="aktiv" '; else $class = '';
- if ($txt != '') {
- echo '- ';
- echo '';
- echo $txt;
- echo '';
- echo '
';
- }
- }
- echo '
';
- }
- echo '
'."\n\n";
-
-}
-
-
-// -------------------------------------------------------------------
-// html_mayor_foot() : lablec kiirasa ( )
-// -------------------------------------------------------------------
-
-function html_mayor_foot() {
- $_defaultPageLayout = ($_SESSION['pageLayout']==0) ? 'leftpad' : 'toppad';
- echo ''."\n\n";
- echo "\n";
-}
-
-
-?>
--
cgit v1.2.3