1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

Introducing e_IFRAME mod; NOHEADER changed to e_NOHEADER; overall menu.php url checks cleaned (API, header, footer); menu related code cleanup and fixes, e_parse improvements (more work is needed); smarter getSingleton() and getObject() (in progress)

This commit is contained in:
secretr
2009-08-19 14:39:57 +00:00
parent e8f6645d10
commit 3099bf9052
9 changed files with 356 additions and 258 deletions

View File

@@ -9,8 +9,8 @@
* General purpose file * General purpose file
* *
* $Source: /cvs_backup/e107_0.8/class2.php,v $ * $Source: /cvs_backup/e107_0.8/class2.php,v $
* $Revision: 1.130 $ * $Revision: 1.131 $
* $Date: 2009-08-17 14:40:23 $ * $Date: 2009-08-19 14:39:57 $
* $Author: secretr $ * $Author: secretr $
* *
*/ */
@@ -1082,7 +1082,7 @@ $e107Path = str_replace($e107->base_path, '', e_SELF); // Knock off the initi
if ( if (
(!$isPluginDir && strpos($e107Path, $ADMIN_DIRECTORY) === 0 ) // Core admin directory (!$isPluginDir && strpos($e107Path, $ADMIN_DIRECTORY) === 0 ) // Core admin directory
|| ($isPluginDir && (strpos(e_PAGE,'admin_') === 0 || strpos($e107Path, 'admin/') !== FALSE)) // Plugin admin file or directory || ($isPluginDir && (strpos(e_PAGE,'admin_') === 0 || strpos($e107Path, 'admin/') !== FALSE)) // Plugin admin file or directory
|| (varsettrue($eplug_admin)) // Admin forced || (varsettrue($eplug_admin) || defsettrue('ADMIN_AREA')) // Admin forced
) )
{ {
$inAdminDir = TRUE; $inAdminDir = TRUE;
@@ -1093,15 +1093,19 @@ if (
if(!defined('THEME')) if(!defined('THEME'))
{ {
if ($inAdminDir && varsettrue($pref['admintheme'])&& (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE)) //Force USER_AREA added
if ($inAdminDir && varsettrue($pref['admintheme']) && !defsettrue('USER_AREA'))
{ {
//We have now e_IFRAME mod and USER_AREA force
// && (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE)
/* if (strpos(e_SELF, "newspost.php") !== FALSE) /* if (strpos(e_SELF, "newspost.php") !== FALSE)
{ {
define("MAINTHEME", e_THEME.$pref['sitetheme']."/"); MAINTHEME no longer used in core distribution define("MAINTHEME", e_THEME.$pref['sitetheme']."/"); MAINTHEME no longer used in core distribution
} */ } */
checkvalidtheme($pref['admintheme']); checkvalidtheme($pref['admintheme']);
} }
elseif (USERTHEME !== false && USERTHEME != 'USERTHEME' && !$inAdminDir) elseif (USERTHEME !== false/* && USERTHEME != 'USERTHEME'*/ && !$inAdminDir)
{ {
checkvalidtheme(USERTHEME); checkvalidtheme(USERTHEME);
} }
@@ -1138,12 +1142,13 @@ if(!defined("THEME_LAYOUT"))
} }
} }
/* Done via e_IFRAME and USER_AREA force combination, check moved to menu.php
if(strpos(e_SELF.'?'.e_QUERY, $ADMIN_DIRECTORY. 'menus.php?configure')!==FALSE) if(strpos(e_SELF.'?'.e_QUERY, $ADMIN_DIRECTORY. 'menus.php?configure')!==FALSE)
{ {
$menus_equery = explode('.', e_QUERY); $menus_equery = explode('.', e_QUERY);
$def = $menus_equery[1]; $def = $menus_equery[1];
} }
*/
if($def) // custom-page layout. if($def) // custom-page layout.
{ {
@@ -1167,23 +1172,21 @@ if(!isset($_E107['no_menus']))
e107::getMenu()->init(); e107::getMenu()->init();
} }
// here we USE the theme // here we USE the theme
if ($inAdminDir) if($inAdminDir)
{ {
if (file_exists(THEME.'admin_theme.php') && (strpos(e_SELF.'?'.e_QUERY, $ADMIN_DIRECTORY. 'menus.php?configure')===FALSE)) // no admin theme when previewing. if(file_exists(THEME.'admin_theme.php')&&(strpos(e_SELF.'?'.e_QUERY, $ADMIN_DIRECTORY.'menus.php?configure')===FALSE)) // no admin theme when previewing.
{ {
require_once(THEME.'admin_theme.php'); require_once (THEME.'admin_theme.php');
} }
else else
{ {
require_once(THEME.'theme.php'); require_once (THEME.'theme.php');
} }
} }
else else
{ {
require_once(THEME.'theme.php'); require_once (THEME.'theme.php');
} }

View File

@@ -9,9 +9,9 @@
* Administration Area Authorization * Administration Area Authorization
* *
* $Source: /cvs_backup/e107_0.8/e107_admin/auth.php,v $ * $Source: /cvs_backup/e107_0.8/e107_admin/auth.php,v $
* $Revision: 1.10 $ * $Revision: 1.11 $
* $Date: 2009-07-23 15:21:41 $ * $Date: 2009-08-19 14:39:56 $
* $Author: e107coders $ * $Author: secretr $
*/ */
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
@@ -24,8 +24,11 @@ if (ADMIN)
{ {
define("ADMIN_PAGE", true); define("ADMIN_PAGE", true);
//don't include it if it'a an AJAX call or not wanted //don't include it if it'a an AJAX call or not wanted
if(!e_AJAX_REQUEST && !defset('NO_HEADER')) if(!e_AJAX_REQUEST && !defset('e_NOHEADER'))
{
require_once(e_ADMIN."header.php"); require_once(e_ADMIN."header.php");
}
/* /*
* FIXME - missing $style for tablerender * FIXME - missing $style for tablerender
* The Solution: parse_admin() without sending it to the browser if it's an ajax call * The Solution: parse_admin() without sending it to the browser if it's an ajax call

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/footer.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/footer.php,v $
| $Revision: 1.12 $ | $Revision: 1.13 $
| $Date: 2009-07-23 15:21:41 $ | $Date: 2009-08-19 14:39:56 $
| $Author: e107coders $ | $Author: secretr $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
@@ -84,7 +84,9 @@ if (ADMIN == TRUE) {
// //
// B.2 Send footer template, stop timing, send simple page stats // B.2 Send footer template, stop timing, send simple page stats
// //
if (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE) { //NEW - Iframe mod
if (!defsettrue('e_IFRAME'))
{
parse_admin($ADMIN_FOOTER); parse_admin($ADMIN_FOOTER);
} }

View File

@@ -12,15 +12,19 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/header.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/header.php,v $
| $Revision: 1.43 $ | $Revision: 1.44 $
| $Date: 2009-08-06 22:41:34 $ | $Date: 2009-08-19 14:39:56 $
| $Author: bugrain $ | $Author: secretr $
+---------------------------------------------------------------+ +---------------------------------------------------------------+
*/ */
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
define("ADMIN_AREA",TRUE); if(!defined('ADMIN_AREA'))
define("USER_AREA",FALSE); {
//avoid PHP warning
define("ADMIN_AREA", TRUE);
}
define("USER_AREA", FALSE);
$sql->db_Mark_Time('(Header Top)'); $sql->db_Mark_Time('(Header Top)');
// //
@@ -201,9 +205,12 @@ echo "<!-- *JS* -->\n";
// Wysiwyg JS support on or off. // Wysiwyg JS support on or off.
// your code should run off e_WYSIWYG // your code should run off e_WYSIWYG
if (varset($pref['wysiwyg'],FALSE) && check_class($pref['post_html'])) { if (varset($pref['wysiwyg'],FALSE) && check_class($pref['post_html']))
{
define("e_WYSIWYG",TRUE); define("e_WYSIWYG",TRUE);
}else{ }
else
{
define("e_WYSIWYG",FALSE); define("e_WYSIWYG",FALSE);
} }
@@ -212,10 +219,10 @@ $hash = md5(serialize(varset($pref['e_jslib'])).serialize(varset($THEME_JSLIB)).
//echo "<script type='text/javascript' src='".e_FILE_ABS."e_js.php'></script>\n"; //echo "<script type='text/javascript' src='".e_FILE_ABS."e_js.php'></script>\n";
echo "<script type='text/javascript' src='".e_FILE_ABS."e_jslib.php?{$hash}'></script>\n"; echo "<script type='text/javascript' src='".e_FILE_ABS."e_jslib.php?{$hash}'></script>\n";
if (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE) { //if (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE) {
//echo "<script type='text/javascript' src='".e_FILE_ABS."e_ajax.php'></script>\n"; //echo "<script type='text/javascript' src='".e_FILE_ABS."e_ajax.php'></script>\n";
} //}
if (file_exists(THEME.'theme.js')) { echo "<script type='text/javascript' src='".THEME_ABS."theme.js'></script>\n"; } if (file_exists(THEME.'theme.js')) { echo "<script type='text/javascript' src='".THEME_ABS."theme.js'></script>\n"; }
if (is_readable(e_FILE.'user.js') && filesize(e_FILE.'user.js')) { echo "<script type='text/javascript' src='".e_FILE_ABS."user.js'></script>\n"; } if (is_readable(e_FILE.'user.js') && filesize(e_FILE.'user.js')) { echo "<script type='text/javascript' src='".e_FILE_ABS."user.js'></script>\n"; }
@@ -272,22 +279,25 @@ if (isset($eplug_css) && $eplug_css) {
} }
echo "<!-- Theme css -->\n"; echo "<!-- Theme css -->\n";
if (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE && isset($pref['admincss']) && $pref['admincss'] && file_exists(THEME.$pref['admincss'])) { //NEW - Iframe mod
if (!defsettrue('e_IFRAME') && isset($pref['admincss']) && $pref['admincss'] && file_exists(THEME.$pref['admincss']))
{
$css_file = file_exists(THEME.'admin_'.$pref['admincss']) ? THEME_ABS.'admin_'.$pref['admincss'] : THEME_ABS.$pref['admincss']; $css_file = file_exists(THEME.'admin_'.$pref['admincss']) ? THEME_ABS.'admin_'.$pref['admincss'] : THEME_ABS.$pref['admincss'];
echo "<link rel='stylesheet' href='".$css_file."' type='text/css' />\n"; echo "<link rel='stylesheet' href='".$css_file."' type='text/css' />\n";
} else if (isset($pref['themecss']) && $pref['themecss'] && file_exists(THEME.$pref['themecss'])) }
elseif (isset($pref['themecss']) && $pref['themecss'] && file_exists(THEME.$pref['themecss']))
{ {
$css_file = file_exists(THEME.'admin_'.$pref['themecss']) ? THEME_ABS.'admin_'.$pref['themecss'] : THEME_ABS.$pref['themecss']; $css_file = file_exists(THEME.'admin_'.$pref['themecss']) ? THEME_ABS.'admin_'.$pref['themecss'] : THEME_ABS.$pref['themecss'];
echo "<link rel='stylesheet' href='".$css_file."' type='text/css' />\n"; echo "<link rel='stylesheet' href='".$css_file."' type='text/css' />\n";
} }
else else
{ {
$css_file = file_exists(THEME.'admin_style.css') ? THEME_ABS.'admin_style.css' : THEME_ABS.'style.css'; $css_file = file_exists(THEME.'admin_style.css') ? THEME_ABS.'admin_style.css' : THEME_ABS.'style.css';
echo "<link rel='stylesheet' href='".$css_file."' type='text/css' />\n"; echo "<link rel='stylesheet' href='".$css_file."' type='text/css' />\n";
} }
if (!isset($no_core_css) || !$no_core_css) { if (!isset($no_core_css) || !$no_core_css)
{
echo "<link rel='stylesheet' href='".e_FILE_ABS."e107.css' type='text/css' />\n"; echo "<link rel='stylesheet' href='".e_FILE_ABS."e107.css' type='text/css' />\n";
} }
@@ -755,9 +765,14 @@ function admin_purge_related($table, $id)
$sql->db_Mark_Time('Parse Admin Header'); $sql->db_Mark_Time('Parse Admin Header');
if (strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE) {
//NEW - Iframe mod
if (!defsettrue('e_IFRAME'))
{
//removed check strpos(e_SELF.'?'.e_QUERY, 'menus.php?configure') === FALSE
parse_admin($ADMIN_HEADER); parse_admin($ADMIN_HEADER);
} }
$sql->db_Mark_Time('(End: Parse Admin Header)'); $sql->db_Mark_Time('(End: Parse Admin Header)');
} }

View File

@@ -10,11 +10,19 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_admin/menus.php,v $ | $Source: /cvs_backup/e107_0.8/e107_admin/menus.php,v $
| $Revision: 1.32 $ | $Revision: 1.33 $
| $Date: 2009-08-16 16:30:56 $ | $Date: 2009-08-19 14:39:56 $
| $Author: secretr $ | $Author: secretr $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
if(isset($_GET['configure']))
{
//Switch to Front-end
define("USER_AREA", true);
//Switch to desired layout
define('THEME_LAYOUT', $_GET['configure']);
}
require_once("../class2.php"); require_once("../class2.php");
if (!getperms("2")) if (!getperms("2"))
{ {
@@ -23,7 +31,6 @@ if (!getperms("2"))
} }
$e_sub_cat = 'menus'; $e_sub_cat = 'menus';
require_once(e_HANDLER."file_class.php"); require_once(e_HANDLER."file_class.php");
require_once(e_HANDLER."form_handler.php"); require_once(e_HANDLER."form_handler.php");
require_once (e_HANDLER.'message_handler.php'); require_once (e_HANDLER.'message_handler.php');
@@ -35,23 +42,22 @@ require_once(e_HANDLER."menumanager_class.php");
$men = new e_menuManager(); // use 1 for dragdrop. $men = new e_menuManager(); // use 1 for dragdrop.
if(isset($_GET['ajax'])) if(e_AJAX_REQUEST)
{ {
$men->menuSaveAjax(); $men->menuSaveAjax();
exit; exit;
} }
if(isset($_GET['configure']))
{
//No layout parse when in iframe mod
define('e_IFRAME', true);
}
require_once("auth.php"); require_once("auth.php");
if($_POST) if($_POST)
{ {
// print_a($_POST);
// exit;
$e107cache->clear_sys("menus_"); $e107cache->clear_sys("menus_");
} }
@@ -63,7 +69,8 @@ if($_POST)
} }
if (strpos(e_QUERY, 'configure') === FALSE) //BC - configure and dot delimiter deprecated
if (!isset($_GET['configure']))
{ {
$men->menuScanMenus(); $men->menuScanMenus();
$text .= $men->menuRenderMessage(); $text .= $men->menuRenderMessage();
@@ -71,23 +78,9 @@ if($_POST)
$text .= $men->menuVisibilityOptions(); $text .= $men->menuVisibilityOptions();
$text .= $men->menuRenderIframe(); $text .= $men->menuRenderIframe();
$ns -> tablerender(ADLAN_6." :: ".LAN_MENULAYOUT, $text, 'menus_config'); $ns -> tablerender(ADLAN_6." :: ".LAN_MENULAYOUT, $text, 'menus_config');
// $text .= "<iframe name='menu_iframe' id='menu_iframe' src='".e_SELF."?configure.$curLayout' width='100%' style='width: 100%; height: ".(($cnt*90)+600)."px; border: 0px' frameborder='0' scrolling='auto' ></iframe>";
} }
else // Within the IFrame. else // Within the IFrame.
{ {
/* echo "<div>
e_QUERY = ".e_QUERY."<br />
curLayout = ".$men->curLayout."<br />
dbLayout = ".$men->dbLayout."<br />";
print_a($_POST);
echo "
</div>";*/
$men->menuRenderPage(); $men->menuRenderPage();
} }
@@ -123,6 +116,7 @@ function headerjs()
if(strpos(e_QUERY, 'configure') !== FALSE ) if(strpos(e_QUERY, 'configure') !== FALSE )
{ {
//FIXME - proto/scripty already loaded, create and jsmanager handler
$ret = " $ret = "
<!-- load prototype and scriptaculous --> <!-- load prototype and scriptaculous -->
@@ -161,7 +155,7 @@ function headerjs()
}; };
var options = { var options = {
editorEnabled : true, editorEnabled : true,
'saveurl' : '".e_SELF."?ajax=', 'saveurl' : '".e_SELF."?ajax_used=1',
hoverclass: 'block-hover' hoverclass: 'block-hover'
}; };

View File

@@ -9,8 +9,8 @@
* e107 Main * e107 Main
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/e107_class.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/e107_class.php,v $
* $Revision: 1.37 $ * $Revision: 1.38 $
* $Date: 2009-08-17 14:40:22 $ * $Date: 2009-08-19 14:39:56 $
* $Author: secretr $ * $Author: secretr $
*/ */
@@ -87,6 +87,26 @@ class e107
*/ */
protected static $_plug_config_arr = array(); protected static $_plug_config_arr = array();
/**
* Core handlers array
* For new/missing handler add
* 'class name' => 'filename' pair
*
* Used to auto-load core handlers
*
* @see getSingleton()
* @see getObject()
* @var array
*/
protected static $_known_handlers = array(
'e_form' => 'form_class.php',
'e_upgrade' => 'form_class.php',
'e_jshelper' => 'js_helper.php',
'e_menu' => 'menu_class.php',
'e107plugin' => 'plugin_class.php',
'xmlClass' => 'xml_class.php'
);
/** /**
* Constructor * Constructor
@@ -213,7 +233,7 @@ class e107
* Retrieve singleton object * Retrieve singleton object
* *
* @param string $class_name * @param string $class_name
* @param string $path optional script path * @param string|boolean $path optional script path
* @param string $regpath additional registry path * @param string $regpath additional registry path
* @return Object * @return Object
*/ */
@@ -221,12 +241,15 @@ class e107
{ {
if(true === $path) if(true === $path)
{ {
//TODO All handler class names in array (lazy loading) if(isset(self::$_known_handlers[$class_name]))
{
$path = self::getParser()->replaceConstants(self::$_known_handlers[$class_name]);
}
} }
$id = 'core/e107/singleton/'.$class_name.$regpath; $id = 'core/e107/singleton/'.$class_name.$regpath;
if(!e107::getRegistry($id)) if(!e107::getRegistry($id))
{ {
if(null !== $path && !class_exists($class_name)) if($path && is_string($path) && !class_exists($class_name))
{ {
e107_require_once($path); //no existence/security checks here! e107_require_once($path); //no existence/security checks here!
} }

View File

@@ -9,9 +9,9 @@
* Text processing and parsing functions * Text processing and parsing functions
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/e_parse_class.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/e_parse_class.php,v $
* $Revision: 1.56 $ * $Revision: 1.57 $
* $Date: 2009-08-08 14:14:39 $ * $Date: 2009-08-19 14:39:57 $
* $Author: marj_nl_fr $ * $Author: secretr $
* *
*/ */
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
@@ -1188,41 +1188,56 @@ class e_parse
{ {
if($mode != "") if($mode != "")
{ {
global $IMAGES_DIRECTORY, $PLUGINS_DIRECTORY, $FILES_DIRECTORY, $THEMES_DIRECTORY,$DOWNLOADS_DIRECTORY,$ADMIN_DIRECTORY; global $IMAGES_DIRECTORY, $PLUGINS_DIRECTORY, $FILES_DIRECTORY,
$replace_relative = array("", $THEMES_DIRECTORY, $DOWNLOADS_DIRECTORY, $ADMIN_DIRECTORY, $HANDLERS_DIRECTORY;
$e107 = e107::getInstance();
//FIXME - replace globals like this $e107->e107_dirs['IMAGES_DIRECTORY']
$replace_relative = array(
"",
SITEURL.$IMAGES_DIRECTORY, SITEURL.$IMAGES_DIRECTORY,
SITEURL.$THEMES_DIRECTORY, SITEURL.$THEMES_DIRECTORY,
$IMAGES_DIRECTORY, $IMAGES_DIRECTORY,
$PLUGINS_DIRECTORY, $PLUGINS_DIRECTORY,
$FILES_DIRECTORY, $FILES_DIRECTORY,
$THEMES_DIRECTORY, $THEMES_DIRECTORY,
$DOWNLOADS_DIRECTORY); $DOWNLOADS_DIRECTORY,
$HANDLERS_DIRECTORY
);
if($mode == "abs") switch ($mode)
{ {
$replace_absolute = array("/", case 'abs':
$replace_absolute = array(
$e107->server_path,
e_IMAGE_ABS, e_IMAGE_ABS,
e_THEME_ABS, e_THEME_ABS,
e_IMAGE_ABS, e_IMAGE_ABS,
e_PLUGIN_ABS, e_PLUGIN_ABS,
e_FILE_ABS, e_FILE_ABS,
e_THEME_ABS, e_THEME_ABS,
e_DOWNLOAD_ABS e_DOWNLOAD_ABS,
e_HANDLER_ABS
); );
} break;
elseif($mode == "full")
{ case 'full':
$replace_absolute = array(SITEURL, $replace_absolute = array(
SITEURL,
SITEURL.$IMAGES_DIRECTORY, SITEURL.$IMAGES_DIRECTORY,
SITEURL.$THEMES_DIRECTORY, SITEURL.$THEMES_DIRECTORY,
SITEURL.$IMAGES_DIRECTORY, SITEURL.$IMAGES_DIRECTORY,
SITEURL.$PLUGINS_DIRECTORY, SITEURL.$PLUGINS_DIRECTORY,
SITEURL.$FILES_DIRECTORY, SITEURL.$FILES_DIRECTORY,
SITEURL.$THEMES_DIRECTORY, SITEURL.$THEMES_DIRECTORY,
SITEURL.$DOWNLOADS_DIRECTORY); SITEURL.$DOWNLOADS_DIRECTORY,
SITEURL.$HANDLERS_DIRECTORY
);
break;
} }
$search = array("{e_BASE}","{e_IMAGE_ABS}","{e_THEME_ABS}","{e_IMAGE}","{e_PLUGIN}","{e_FILE}","{e_THEME}","{e_DOWNLOAD}"); $search = array("{e_BASE}","{e_IMAGE_ABS}","{e_THEME_ABS}","{e_IMAGE}","{e_PLUGIN}","{e_FILE}","{e_THEME}","{e_DOWNLOAD}","{e_HANDLER}");
if (ADMIN) if (ADMIN)
{ {
@@ -1270,7 +1285,8 @@ class e_parse
} }
function createConstants($url,$mode=0){ function createConstants($url,$mode=0){
global $IMAGES_DIRECTORY,$PLUGINS_DIRECTORY,$FILES_DIRECTORY,$THEMES_DIRECTORY,$DOWNLOADS_DIRECTORY,$ADMIN_DIRECTORY; global $IMAGES_DIRECTORY, $PLUGINS_DIRECTORY, $FILES_DIRECTORY, $THEMES_DIRECTORY, $DOWNLOADS_DIRECTORY,
$ADMIN_DIRECTORY, $HANDLERS_DIRECTORY;
if($mode == 0) // folder name only. if($mode == 0) // folder name only.
{ {
@@ -1281,6 +1297,7 @@ class e_parse
"{"."e_THEME"."}"=>$THEMES_DIRECTORY, "{"."e_THEME"."}"=>$THEMES_DIRECTORY,
"{"."e_DOWNLOAD"."}"=>$DOWNLOADS_DIRECTORY, "{"."e_DOWNLOAD"."}"=>$DOWNLOADS_DIRECTORY,
"{"."e_ADMIN"."}"=>$ADMIN_DIRECTORY, "{"."e_ADMIN"."}"=>$ADMIN_DIRECTORY,
"{"."e_HANDLER"."}"=>$HANDLERS_DIRECTORY
); );
} }
elseif($mode == 1) // relative path elseif($mode == 1) // relative path
@@ -1291,7 +1308,8 @@ class e_parse
"{"."e_FILE"."}"=>e_FILE, "{"."e_FILE"."}"=>e_FILE,
"{"."e_THEME"."}"=>e_THEME, "{"."e_THEME"."}"=>e_THEME,
"{"."e_DOWNLOAD"."}"=>e_DOWNLOAD, "{"."e_DOWNLOAD"."}"=>e_DOWNLOAD,
"{"."e_ADMIN"."}"=>e_ADMIN "{"."e_ADMIN"."}"=>e_ADMIN,
"{"."e_HANDLER"."}"=>e_HANDLER
); );
} }
foreach($tmp as $key=>$val) foreach($tmp as $key=>$val)

View File

@@ -1,81 +1,98 @@
<?php <?php
/* /*
+ ----------------------------------------------------------------------------+ * e107 website system
| e107 website system *
| * Copyright (C) 2001-2008 e107 Inc (e107.org)
| Copyright (c) e107 Inc. 2001-2009 * Released under the terms and conditions of the
| http://e107.org * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
| *
| Released under the terms and conditions of the * e107 Menu Class
| GNU General Public License (http://gnu.org). *
| * $Source: /cvs_backup/e107_0.8/e107_handlers/menu_class.php,v $
| $Source: /cvs_backup/e107_0.8/e107_handlers/menu_class.php,v $ * $Revision: 1.10 $
| $Revision: 1.9 $ * $Date: 2009-08-19 14:39:57 $
| $Date: 2009-08-16 23:58:31 $ * $Author: secretr $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/ */
if (!defined('e107_INIT'))
if(!defined('e107_INIT'))
{ {
exit (); exit();
} }
/**
* Retrieve and render site menus
*
* @package e107
* @category e107_handlers
* @version 1.0
* @author Cameron
* @copyright Copyright (c) 2009, e107 Inc.
*
*/
class e_menu class e_menu
{ {
/**
* Runtime cached menu data
*
* @var array
*/
public $eMenuActive = array(); public $eMenuActive = array();
// public $eMenuList = array();
/**
* Visibility check cache
*
* @var array
*/
protected $_visibility_cache = array();
/**
* Constructor
*
*/
function __construct() function __construct()
{ {
} }
/** /**
* Init * Retrieve menus, check visibility against
* current user classes and current page url
* *
*/ */
public function init() public function init()
{ {
$menu_layout_field = THEME_LAYOUT != e107 :: getPref('sitetheme_deflayout') ? THEME_LAYOUT : ""; $menu_layout_field = THEME_LAYOUT!=e107::getPref('sitetheme_deflayout') ? THEME_LAYOUT : "";
$menu_data = e107 :: getCache()->retrieve_sys("menus_".USERCLASS_LIST."_".md5(e_LANGUAGE.$menu_layout_field)); $menu_data = e107::getCache()->retrieve_sys("menus_".USERCLASS_LIST."_".md5(e_LANGUAGE.$menu_layout_field));
$menu_data = e107 :: getArrayStorage()->ReadArray($menu_data); $menu_data = e107::getArrayStorage()->ReadArray($menu_data);
$eMenuArea = array(); $eMenuArea = array();
// $eMenuList = array(); // $eMenuList = array();
// $eMenuActive = array(); // DEPRECATED // $eMenuActive = array(); // DEPRECATED
if(!is_array($menu_data))
if (!is_array($menu_data))
{ {
$menu_qry = 'SELECT * FROM #menus WHERE menu_location > 0 AND menu_class IN ('.USERCLASS_LIST.') AND menu_layout = "'.$menu_layout_field.'" ORDER BY menu_location,menu_order'; $menu_qry = 'SELECT * FROM #menus WHERE menu_location > 0 AND menu_class IN ('.USERCLASS_LIST.') AND menu_layout = "'.$menu_layout_field.'" ORDER BY menu_location,menu_order';
if (e107 :: getDb()->db_Select_gen($menu_qry)) if(e107::getDb()->db_Select_gen($menu_qry))
{ {
while ($row = e107 :: getDb()->db_Fetch()) while($row = e107::getDb()->db_Fetch())
{ {
$eMenuArea[$row['menu_location']][] = $row; $eMenuArea[$row['menu_location']][] = $row;
} }
} }
$menu_data['menu_area'] = $eMenuArea; $menu_data['menu_area'] = $eMenuArea;
$menuData = e107::getArrayStorage()->WriteArray($menu_data, false);
$menuData = e107 :: getArrayStorage()->WriteArray($menu_data,false); e107::getCache()->set_sys('menus_'.USERCLASS_LIST.'_'.md5(e_LANGUAGE.$menu_layout_field), $menuData);
e107 :: getCache()->set_sys('menus_'.USERCLASS_LIST.'_'.md5(e_LANGUAGE.$menu_layout_field),$menuData);
} }
else else
{ {
$eMenuArea = $menu_data['menu_area']; $eMenuArea = $menu_data['menu_area'];
} }
$total = array(); $total = array();
foreach ($eMenuArea as $area => $val) foreach($eMenuArea as $area => $val)
{ {
foreach ($val as $row) foreach($val as $row)
{ {
if ($this->isVisible($row)) if($this->isVisible($row))
{ {
$path = str_replace("/","",$row['menu_path']); $path = str_replace("/", "", $row['menu_path']);
if (!isset ($total[$area])) if(!isset($total[$area]))
{ {
$total[$area] = 0; $total[$area] = 0;
} }
@@ -84,97 +101,108 @@ class e_menu
} }
} }
} }
e107 :: getRender()->eMenuTotal = $total; e107::getRender()->eMenuTotal = $total;
} }
/**
private function isVisible($row) * Check visibility of a menu against URL
*
* @param array $row menu data
* @return boolean
*/
protected function isVisible($row, $url = '')
{ {
if(isset($this->_visibility_cache[$row['id']]))
{
return $this->_visibility_cache[$row['id']];
}
$show_menu = TRUE; $show_menu = TRUE;
if($row['menu_pages'])
if ($row['menu_pages'])
{ {
list($listtype,$listpages) = explode("-",$row['menu_pages'],2); list ($listtype, $listpages) = explode("-", $row['menu_pages'], 2);
$pagelist = explode("|",$listpages); $pagelist = explode("|", $listpages);
$check_url = e_SELF.(e_QUERY ? "?".e_QUERY : ''); $check_url = $url ? $url : e_SELF.(e_QUERY ? "?".e_QUERY : '');
switch($listtype)
switch ($listtype)
{ {
case '1' : //show menu case '1': //show menu
$show_menu = false; $show_menu = false;
foreach ($pagelist as $p) foreach($pagelist as $p)
{ {
if (substr($p,- 1) === '!') if(substr($p, -1)==='!')
{ {
$p = substr($p,0,- 1); $p = substr($p, 0, -1);
$show_menu = TRUE; $show_menu = true;
break 2; break 2;
} }
elseif (strpos($check_url,$p) !== FALSE) elseif(strpos($check_url, $p) !== false)
{ {
$show_menu = TRUE; $show_menu = true;
break 2; break 2;
} }
} }
break; break;
case '2' : //hide menu case '2': //hide menu
$show_menu = true;
$show_menu = TRUE; foreach($pagelist as $p)
foreach ($pagelist as $p)
{ {
if (substr($p,- 1) == '!') if(substr($p, -1)=='!')
{ {
$p = substr($p,0,- 1); $p = substr($p, 0, -1);
if (substr($check_url,strlen($p) * - 1) == $p) if(substr($check_url, strlen($p)*-1)==$p)
{ {
$show_menu = FALSE; $show_menu = false;
break 2; break 2;
} }
} }
elseif (strpos($check_url,$p) !== FALSE) elseif(strpos($check_url, $p) !== false)
{ {
$show_menu = FALSE; $show_menu = false;
break 2; break 2;
} }
} }
break; break;
} //end switch } //end switch
} //endif menu_pages } //endif menu_pages
$this->_visibility_cache[$row['id']] = $show_menu;
return $show_menu; return $show_menu;
} }
/**
* Render menu area
*
* @param string $parm
* @return string
*/
public function renderArea($parm = '') public function renderArea($parm = '')
{ {
global $sql,$ns,$tp,$sc_style; global $sql, $ns, $tp, $sc_style;
global $error_handler; global $error_handler;
$e107 = e107 :: getInstance(); $e107 = e107::getInstance();
$tmp = explode(':',$parm);
$buffer_output = true; // Default - return all output.
if (isset ($tmp[1]) && $tmp[1] == 'echo') $tmp = explode(':', $parm);
$buffer_output = true; // Default - return all output.
if(isset($tmp[1])&&$tmp[1]=='echo')
{ {
$buffer_output = false; $buffer_output = false;
} }
if (!array_key_exists($tmp[0],$this->eMenuActive)) if(!array_key_exists($tmp[0], $this->eMenuActive))
{ {
return; return;
} }
if ($buffer_output) if($buffer_output)
{ {
ob_start(); ob_start();
} }
e107 :: getRender()->eMenuArea = $tmp[0]; e107::getRender()->eMenuArea = $tmp[0];
foreach ($this->eMenuActive[$tmp[0]] as $row) foreach($this->eMenuActive[$tmp[0]] as $row)
{ {
$this->renderMenu($row['menu_path'],$row['menu_name'],$row['menu_parms']); $this->renderMenu($row['menu_path'], $row['menu_name'], $row['menu_parms']);
} }
e107 :: getRender()->eMenuCount = 0; e107::getRender()->eMenuCount = 0;
e107 :: getRender()->eMenuArea = null; e107::getRender()->eMenuArea = null;
if ($buffer_output) if($buffer_output)
{ {
$ret = ob_get_contents(); $ret = ob_get_contents();
ob_end_clean(); ob_end_clean();
@@ -182,59 +210,73 @@ class e_menu
} }
} }
/**
public function renderMenu($mpath,$mname,$parm = '') * Render menu
*
* @param string $mpath menu path
* @param string $mname menu name
* @param string $parm menu parameters
* @param boolean $return
* return string if required
*/
public function renderMenu($mpath, $mname, $parm = '', $return = false)
{ {
global $sql; // required at the moment. global $sql; // required at the moment.
global $ns,$tp,$sc_style; global $ns, $tp, $sc_style;
$e107 = e107 :: getInstance(); $e107 = e107::getInstance();
if ($error_handler->debug == true) if($return)
{
ob_start();
}
if($error_handler->debug == true)
{ {
echo "\n<!-- Menu Start: ".$mname." -->\n"; echo "\n<!-- Menu Start: ".$mname." -->\n";
} }
e107::getDB()->db_Mark_Time($mname);
e107 :: getDB()->db_Mark_Time($mname); if(is_numeric($mpath))
if (is_numeric($mpath))
{ {
$sql->db_Select("page","*","page_id='".$mpath."' "); $sql->db_Select("page", "*", "page_id='".$mpath."' ");
$page = $sql->db_Fetch(); $page = $sql->db_Fetch();
$caption = $e107->tp->toHTML($page['page_title'],true,'parse_sc, constants'); $caption = $e107->tp->toHTML($page['page_title'], true, 'parse_sc, constants');
$text = $e107->tp->toHTML($page['page_text'],true,'parse_sc, constants'); $text = $e107->tp->toHTML($page['page_text'], true, 'parse_sc, constants');
e107 :: getRender()->tablerender($caption,$text); e107::getRender()->tablerender($caption, $text);
} }
else else
{ {
if (is_readable(e_PLUGIN.$mpath."/languages/".e_LANGUAGE.".php")) if(is_readable(e_PLUGIN.$mpath."/languages/".e_LANGUAGE.".php"))
{ {
include_once (e_PLUGIN.$mpath."/languages/".e_LANGUAGE.".php"); include_once (e_PLUGIN.$mpath."/languages/".e_LANGUAGE.".php");
} }
elseif (is_readable(e_PLUGIN.$mpath."/languages/".e_LANGUAGE."/".e_LANGUAGE.".php")) elseif(is_readable(e_PLUGIN.$mpath."/languages/".e_LANGUAGE."/".e_LANGUAGE.".php"))
{ {
include_once (e_PLUGIN.$mpath."/languages/".e_LANGUAGE."/".e_LANGUAGE.".php"); include_once (e_PLUGIN.$mpath."/languages/".e_LANGUAGE."/".e_LANGUAGE.".php");
} }
elseif (is_readable(e_PLUGIN.$mpath."/languages/English.php")) elseif(is_readable(e_PLUGIN.$mpath."/languages/English.php"))
{ {
include_once (e_PLUGIN.$mpath."/languages/English.php"); include_once (e_PLUGIN.$mpath."/languages/English.php");
} }
elseif (is_readable(e_PLUGIN.$mpath."/languages/English/English.php")) elseif(is_readable(e_PLUGIN.$mpath."/languages/English/English.php"))
{ {
include_once (e_PLUGIN.$mpath."/languages/English/English.php"); include_once (e_PLUGIN.$mpath."/languages/English/English.php");
} }
if (file_exists(e_PLUGIN.$mpath."/".$mname.".php")) if(file_exists(e_PLUGIN.$mpath."/".$mname.".php"))
{ {
include_once (e_PLUGIN.$mpath."/".$mname.".php"); include_once (e_PLUGIN.$mpath."/".$mname.".php");
} }
} }
e107::getDB()->db_Mark_Time("(After ".$mname.")");
e107 :: getDB()->db_Mark_Time("(After ".$mname.")"); if($error_handler->debug==true)
if ($error_handler->debug == true)
{ {
echo "\n<!-- Menu End: ".$mname." -->\n"; echo "\n<!-- Menu End: ".$mname." -->\n";
} }
if($return)
{
$ret = ob_get_contents();
ob_end_clean();
return $ret;
}
} }
} }

View File

@@ -10,9 +10,9 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/menumanager_class.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/menumanager_class.php,v $
| $Revision: 1.5 $ | $Revision: 1.6 $
| $Date: 2009-08-17 15:23:44 $ | $Date: 2009-08-19 14:39:57 $
| $Author: e107coders $ | $Author: secretr $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
@@ -59,17 +59,16 @@ class e_menuManager {
{ {
$this->curLayout = $_POST['custom_select']; $this->curLayout = $_POST['custom_select'];
} }
elseif($_GET['lay']) elseif(isset($_GET['lay']))
{ {
$this->curLayout = $_GET['lay']; $this->curLayout = $_GET['lay'];
} }
else else
{ {
$tmp = explode('.', e_QUERY); $this->curLayout = varsettrue($_GET['configure'], $pref['sitetheme_deflayout']);
$this->curLayout = ($tmp[1]) ? $tmp[1] : $pref['sitetheme_deflayout'];
} }
$this->dbLayout = ($this->curLayout !=$pref['sitetheme_deflayout']) ? $this->curLayout : ""; //menu_layout is left blank when it's default. $this->dbLayout = ($this->curLayout != $pref['sitetheme_deflayout']) ? $this->curLayout : ""; //menu_layout is left blank when it's default.
if(isset($_POST['menu_id']) || $_GET['id']) if(isset($_POST['menu_id']) || $_GET['id'])
{ {
@@ -143,7 +142,7 @@ class e_menuManager {
global $ns,$sql; global $ns,$sql;
if(!$url) if(!$url)
{ {
$url = e_SELF."?configure.".$this->curLayout; $url = e_SELF."?configure=".$this->curLayout;
} }
$cnt = $sql->db_Select("menus", "*", "menu_location > 0 AND menu_layout = '$curLayout' ORDER BY menu_name "); // calculate height to remove vertical scroll-bar. $cnt = $sql->db_Select("menus", "*", "menu_location > 0 AND menu_layout = '$curLayout' ORDER BY menu_name "); // calculate height to remove vertical scroll-bar.
@@ -290,7 +289,7 @@ class e_menuManager {
$admin_log->log_event('MENU_07',$location.'[!br!]'.$position.'[!br!]'.$this->menuId,E_LOG_INFORMATIVE,''); $admin_log->log_event('MENU_07',$location.'[!br!]'.$position.'[!br!]'.$this->menuId,E_LOG_INFORMATIVE,'');
} }
if (strpos(e_QUERY, 'configure') === FALSE) if (!isset($_GET['configure']))
{ // Scan plugin directories to see if menus to add { // Scan plugin directories to see if menus to add
$this->menuScanMenus(); $this->menuScanMenus();
} }
@@ -529,10 +528,8 @@ class e_menuManager {
{ {
$row=$sql->db_Fetch(); $row=$sql->db_Fetch();
//If menu is not already activated in that area, add the record. //If menu is not already activated in that area, add the record.
//$query = "SELECT menu_name,menu_path FROM #menus WHERE menu_name='".$row['menu_name']."' AND menu_layout = '".$this->dbLayout."' AND menu_location = ".$location." LIMIT 1 ";
$query = "SELECT menu_name,menu_path FROM #menus WHERE menu_name='".$row['menu_name']."' AND menu_layout = '".$this->dbLayout."' AND menu_location = ".$location." LIMIT 1 "; //if(!$sql->db_Select_gen($query, $this->debug))
if(!$sql->db_Select_gen($query, $this->debug))
{ {
$insert = array( $insert = array(
@@ -540,7 +537,7 @@ class e_menuManager {
'menu_name' => $row['menu_name'], 'menu_name' => $row['menu_name'],
'menu_location' => $location, 'menu_location' => $location,
'menu_order' => $menu_count, 'menu_order' => $menu_count,
'menu_class' => $val['menu_class'], 'menu_class' => $row['menu_class'],
'menu_pages' => '', 'menu_pages' => '',
'menu_path' => $row['menu_path'], 'menu_path' => $row['menu_path'],
'menu_layout' => $this->dbLayout, 'menu_layout' => $this->dbLayout,
@@ -732,6 +729,7 @@ class e_menuManager {
{ {
global $sql, $ns, $HEADER, $FOOTER, $rs, $pref, $tp; global $sql, $ns, $HEADER, $FOOTER, $rs, $pref, $tp;
//FIXME - XHTML cleanup, front-end standards (elist, forms etc)
echo "<div id='portal'>"; echo "<div id='portal'>";
$this->parseheader($HEADER); // $layouts_str; $this->parseheader($HEADER); // $layouts_str;
@@ -740,7 +738,7 @@ class e_menuManager {
echo "<div style='text-align:center'>"; echo "<div style='text-align:center'>";
echo $rs->form_open("post", e_SELF."?configure.".$this->curLayout, "menuActivation"); echo $rs->form_open("post", e_SELF."?configure=".$this->curLayout, "menuActivation");
$text = "<table style='width:80%;margin-left:auto;margin-right:auto'>"; $text = "<table style='width:80%;margin-left:auto;margin-right:auto'>";
@@ -782,7 +780,7 @@ class e_menuManager {
{ {
$menuInf = (strlen($row['menu_path']) > 1) ? ' ('.substr($row['menu_path'],0,-1).')' : ''; $menuInf = (strlen($row['menu_path']) > 1) ? ' ('.substr($row['menu_path'],0,-1).')' : '';
$text .= "<tr style='background-color:$color;color:black'> $text .= "<tr style='background-color:$color;color:black'>
<td style='text-align:left; color:black;'><input type='checkbox' name='menuselect[]' value='{$row['menu_id']}' />".$row['menu_name'].$menuInf."</td> <td style='text-align:left; color:black;'><input type='checkbox' id='menuselect-{$row['menu_id']}' name='menuselect[]' value='{$row['menu_id']}' /><label for='menuselect-{$row['menu_id']}'>".$row['menu_name'].$menuInf."</label></td>
<td style='color:black'> ".$pdeta."&nbsp;</td> <td style='color:black'> ".$pdeta."&nbsp;</td>
</tr>\n"; </tr>\n";
} }
@@ -792,7 +790,7 @@ class e_menuManager {
<div class='block-toggle'><input type='checkbox' name='menuselect[]' value='{$row['menu_id']}' />".$row['menu_name']." {$pdeta}</div> <div class='block-toggle'><input type='checkbox' name='menuselect[]' value='{$row['menu_id']}' />".$row['menu_name']." {$pdeta}</div>
<div class='content'>"; <div class='content'>";
$text .= $this->menuRenderMenu($row,$menu_count); $text .= $this->menuRenderMenu($row, $menu_count);
$text .= "</div></div>\n"; $text .= "</div></div>\n";
} }
} }
@@ -842,7 +840,7 @@ class e_menuManager {
{ {
global $rs, $pref; global $rs, $pref;
$text .= "<form method='post' action='".e_SELF."?configure.".$this->curLayout."'>"; $text .= "<form method='post' action='".e_SELF."?configure=".$this->curLayout."'>";
// color:white;background-color:black;width:98%;display:block;padding:15px;text-align:center // color:white;background-color:black;width:98%;display:block;padding:15px;text-align:center
$text .= "<div class='buttons-bar center'>".MENLAN_30." "; $text .= "<div class='buttons-bar center'>".MENLAN_30." ";
// $text .= "<select style='color:black' name='custom_select' onchange=\"this.form.submit();\">\n"; // window.frames['menu_iframe'].location=this.options[selectedIndex].value ??? // $text .= "<select style='color:black' name='custom_select' onchange=\"this.form.submit();\">\n"; // window.frames['menu_iframe'].location=this.options[selectedIndex].value ???
@@ -978,7 +976,7 @@ class e_menuManager {
if ($sql9->db_Count("menus", "(*)", " WHERE menu_location='$menu' AND menu_layout = '".$this->dbLayout."' ")) if ($sql9->db_Count("menus", "(*)", " WHERE menu_location='$menu' AND menu_layout = '".$this->dbLayout."' "))
{ {
unset($text); unset($text);
echo $rs->form_open("post", e_SELF."?configure.".$this->curLayout, "frm_menu_".intval($menu)); echo $rs->form_open("post", e_SELF."?configure=".$this->curLayout, "frm_menu_".intval($menu));
$MODE = 1; $MODE = 1;
@@ -1076,18 +1074,18 @@ class e_menuManager {
//DEBUG remove inline style, switch to simple quoted string for title text value //DEBUG remove inline style, switch to simple quoted string for title text value
//TODO hardcoded text //TODO hardcoded text
$text .= '<div class="right"> $text .= '<div class="right">
<a href="'.e_SELF.'?lay='.$this->curLayout.'&amp;vis='.$menu_id.'"> <a target="_top" href="'.e_SELF.'?lay='.$this->curLayout.'&amp;vis='.$menu_id.'">
'.ADMIN_VIEW_ICON.' '.ADMIN_VIEW_ICON.'
</a>'; </a>';
if($conf) if($conf)
{ {
$text .= '<a href="'.e_SELF.'?lay='.$this->curLayout.'&amp;mode=conf&amp;path='.urlencode($conf).'&amp;id='.$menu_id.'"> $text .= '<a target="_top" href="'.e_SELF.'?lay='.$this->curLayout.'&amp;mode=conf&amp;path='.urlencode($conf).'&amp;id='.$menu_id.'">
'.ADMIN_CONFIGURE_ICON.' '.ADMIN_CONFIGURE_ICON.'
</a>'; </a>';
} }
$text .= '<a class="delete" href="'.e_SELF.'?lay='.$this->curLayout.'&amp;mode=deac&amp;id='.$menu_id.'">'.ADMIN_DELETE_ICON.' $text .= '<a target="_top" class="delete" href="'.e_SELF.'?lay='.$this->curLayout.'&amp;mode=deac&amp;id='.$menu_id.'">'.ADMIN_DELETE_ICON.'
</a> </a>
</div>'; </div>';