1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-14 01:19:44 +01:00

allow classes within core shortcodes (.php) + sitelinks duplication fix.

This commit is contained in:
CaMer0n 2009-11-23 10:27:43 +00:00
parent 510bda0f68
commit 8d0028afe1
3 changed files with 199 additions and 183 deletions

View File

@ -4,214 +4,220 @@
| e107 website system
|
| $Source: /cvs_backup/e107_0.8/e107_files/shortcode/sitelinks_alt.php,v $
| $Revision: 1.2 $
| $Date: 2009-11-21 11:36:04 $
| $Revision: 1.3 $
| $Date: 2009-11-23 10:27:35 $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
function sitelinks_alt_shortcode($parm)
class sitelinks_alt
{
global $sql,$pref;
$params = explode('+', $parm);
if (isset($params[0]) && $params[0] && $params[0] != 'no_icons' && $params[0] != 'default')
function sitelinks_alt_shortcode($parm)
{
$icon = $params[0];
}
else
{
$icon = e_IMAGE."generic/arrow.png";
$sql = e107::getDb();
global $pref;
$params = explode('+', $parm);
if (isset($params[0]) && $params[0] && $params[0] != 'no_icons' && $params[0] != 'default')
{
$icon = $params[0];
}
else
{
$icon = e_IMAGE."generic/arrow.png";
}
$js_file = ($params[1] == 'noclick') ? 'nav_menu_alt.js' : 'nav_menu.js';
if (file_exists(THEME.$js_file))
{
$text = "<script type='text/javascript' src='".THEME_ABS.$js_file."'></script>";
}
else
{
$text = "<script type='text/javascript' src='".e_FILE_ABS.$js_file."'></script>";
}
$text .= "<div class='menuBar' style='width:100%; white-space: nowrap'>";
// Setup Parent/Child Arrays ---->
$lnk = e107::getSitelinks();
$lnk->getlinks(1);
$linklist = $lnk->getLinkArray();
$tp = e107::getParser();
// Loops thru parents.
foreach ($linklist['head_menu'] as $lk)
{
$lk['link_url'] = $tp->replaceConstants($lk['link_url'], TRUE, TRUE);
if ($params[0] == 'no_icons')
{
$link_icon = 'no_icons';
}
else
{
$link_icon = $lk['link_button'] ? e_IMAGE.'icons/'.$lk['link_button'] : $icon;
}
$main_linkid = $lk['link_id'];
if (isset($linklist['sub_'.$main_linkid])) // Has Children.
{
$text .= self::adnav_cat($lk['link_name'], '', $link_icon, 'l_'.$main_linkid);
$text .= self::render_sub($linklist, $main_linkid, $params, $icon);
}
else // Display Parent only.
{
$text .= self::adnav_cat($lk['link_name'], $lk['link_url'], $link_icon, FALSE, $lk['link_open']);
}
}
$text .= "</div>";
return $text;
}
function adnav_cat($cat_title, $cat_link, $cat_img, $cat_id = FALSE, $cat_open = FALSE)
{
global $tp;
$cat_link = (strpos($cat_link, '://') === FALSE && strpos($cat_link, 'mailto:') !== 0 ? e_HTTP.$cat_link : $cat_link);
if ($cat_open == 4 || $cat_open == 5)
{
$dimen = ($cat_open == 4) ? "600,400" : "800,600";
$href = " href=\"javascript:open_window('".$cat_link."',".$dimen.")\"";
}
else
{
$href = "href='".$cat_link."'";
}
$text = "<a class='menuButton' ".$href." ";
if ($cat_img != 'no_icons')
{
$text .= "style='background-image: url(".$cat_img."); background-repeat: no-repeat; background-position: 3px 1px; white-space: nowrap' ";
}
if ($cat_id)
{
$text .= "onclick=\"return buttonClick(event, '".$cat_id."');\" onmouseover=\"buttonMouseover(event, '".$cat_id."');\"";
}
if ($cat_open == 1)
{
$text .= " rel='external' ";
}
$text .= ">".$tp->toHTML($cat_title, "", "defs, no_hook")."</a>";
return $text;
}
function adnav_main($cat_title, $cat_link, $cat_img, $cat_id = FALSE, $params, $cat_open = FALSE)
{
global $tp;
$cat_link = (strpos($cat_link, '://') === FALSE) ? e_HTTP.$cat_link : $cat_link;
$cat_link = $tp->replaceConstants($cat_link, TRUE, TRUE);
if ($cat_open == 4 || $cat_open == 5)
{
$dimen = ($cat_open == 4) ? "600,400" : "800,600";
$href = " href=\"javascript:open_window('".$cat_link."',".$dimen.")\"";
}
else
{
$href = "href='".$cat_link."'";
}
$text = "<a class='menuItem' ".$href." ";
if ($cat_id)
{
if (isset($params[2]) && $params[2] == 'link')
$tp = e107::getParser();
$cat_link = (strpos($cat_link, '://') === FALSE && strpos($cat_link, 'mailto:') !== 0 ? e_HTTP.$cat_link : $cat_link);
if ($cat_open == 4 || $cat_open == 5)
{
$text .= "onmouseover=\"menuItemMouseover(event, '".$cat_id."');\"";
$dimen = ($cat_open == 4) ? "600,400" : "800,600";
$href = " href=\"javascript:open_window('".$cat_link."',".$dimen.")\"";
}
else
{
$text .= "onclick=\"return false;\" onmouseover=\"menuItemMouseover(event, '".$cat_id."');\"";
$href = "href='".$cat_link."'";
}
}
if ($cat_open == 1)
{
$text .= " rel='external' ";
}
$text .= ">";
if ($cat_img != 'no_icons')
{
$text .= "<span class='menuItemBuffer'>".$cat_img."</span>";
}
$text .= "<span class='menuItemText'>".$tp->toHTML($cat_title, "", "defs, no_hook")."</span>";
if ($cat_id)
{
$text .= "<span class=\"menuItemArrow\">&#9654;</span>";
}
$text .= "</a>";
return $text;
}
function render_sub($linklist, $id, $params, $icon)
{
$text = "<div id='l_".$id."' class='menu' onmouseover=\"menuMouseover(event)\">";
foreach ($linklist['sub_'.$id] as $sub)
{
// Filter title for backwards compatibility ---->
if (substr($sub['link_name'], 0, 8) == "submenu.")
$text = "<a class='menuButton' ".$href." ";
if ($cat_img != 'no_icons')
{
$tmp = explode(".", $sub['link_name']);
$subname = $tmp[2];
$text .= "style='background-image: url(".$cat_img."); background-repeat: no-repeat; background-position: 3px 1px; white-space: nowrap' ";
}
if ($cat_id)
{
$text .= "onclick=\"return buttonClick(event, '".$cat_id."');\" onmouseover=\"buttonMouseover(event, '".$cat_id."');\"";
}
if ($cat_open == 1)
{
$text .= " rel='external' ";
}
$text .= ">".$tp->toHTML($cat_title, "", "defs, no_hook")."</a>";
return $text;
}
function adnav_main($cat_title, $cat_link, $cat_img, $cat_id = FALSE, $params, $cat_open = FALSE)
{
$tp = e107::getParser();
$cat_link = (strpos($cat_link, '://') === FALSE) ? e_HTTP.$cat_link : $cat_link;
$cat_link = $tp->replaceConstants($cat_link, TRUE, TRUE);
if ($cat_open == 4 || $cat_open == 5)
{
$dimen = ($cat_open == 4) ? "600,400" : "800,600";
$href = " href=\"javascript:open_window('".$cat_link."',".$dimen.")\"";
}
else
{
$subname = $sub['link_name'];
$href = "href='".$cat_link."'";
}
// Setup Child Icon --------->
if (!$sub['link_button'] && $params[0] == 'no_icons')
$text = "<a class='menuItem' ".$href." ";
if ($cat_id)
{
$sub_icon = 'no_icons';
if (isset($params[2]) && $params[2] == 'link')
{
$text .= "onmouseover=\"menuItemMouseover(event, '".$cat_id."');\"";
}
else
{
$text .= "onclick=\"return false;\" onmouseover=\"menuItemMouseover(event, '".$cat_id."');\"";
}
}
else
if ($cat_open == 1)
{
$sub_icon = "<img src='";
$sub_icon .= ($sub['link_button']) ? e_IMAGE.'icons/'.$sub['link_button'] : $icon;
$sub_icon .= "' alt='' style='border:0px; vertical-align:bottom; width: 16px; height: 16px' />";
$text .= " rel='external' ";
}
if (isset($linklist['sub_'.$sub['link_id']]))
{ // Has Children.
$sub_ids[] = $sub['link_id'];
$text .= adnav_main($subname, $sub['link_url'], $sub_icon, 'l_'.$sub['link_id'], $params, $sub['link_open']);
}
else
$text .= ">";
if ($cat_img != 'no_icons')
{
$text .= adnav_main($subname, $sub['link_url'], $sub_icon, null, $params, $sub['link_open']);
$text .= "<span class='menuItemBuffer'>".$cat_img."</span>";
}
}
$text .= "</div>";
if (isset($sub_ids) && is_array($sub_ids))
{
foreach ($sub_ids as $sub_id)
$text .= "<span class='menuItemText'>".$tp->toHTML($cat_title, "", "defs, no_hook")."</span>";
if ($cat_id)
{
$text .= render_sub($linklist, $sub_id, $params, $icon);
$text .= "<span class=\"menuItemArrow\">&#9654;</span>";
}
$text .= "</a>";
return $text;
}
return $text;
}
$js_file = ($params[1] == 'noclick') ? 'nav_menu_alt.js' : 'nav_menu.js';
if (file_exists(THEME.$js_file))
{
$text = "<script type='text/javascript' src='".THEME_ABS.$js_file."'></script>";
}
else
{
$text = "<script type='text/javascript' src='".e_FILE_ABS.$js_file."'></script>";
}
$text .= "<div class='menuBar' style='width:100%; white-space: nowrap'>";
// Setup Parent/Child Arrays ---->
$lnk = e107::getSitelinks();
$lnk->getlinks(1);
$linklist = $lnk->getLinkArray();
$tp = e107::getParser();
// Loops thru parents.
foreach ($linklist['head_menu'] as $lk)
{
$lk['link_url'] = $tp->replaceConstants($lk['link_url'], TRUE, TRUE);
if ($params[0] == 'no_icons')
function render_sub($linklist, $id, $params, $icon)
{
$link_icon = 'no_icons';
}
else
{
$link_icon = $lk['link_button'] ? e_IMAGE.'icons/'.$lk['link_button'] : $icon;
}
$main_linkid = $lk['link_id'];
if (isset($linklist['sub_'.$main_linkid]))
{ // Has Children.
$text .= adnav_cat($lk['link_name'], '', $link_icon, 'l_'.$main_linkid);
$text .= render_sub($linklist, $main_linkid, $params, $icon);
$text = "<div id='l_".$id."' class='menu' onmouseover=\"menuMouseover(event)\">";
foreach ($linklist['sub_'.$id] as $sub)
{
// Filter title for backwards compatibility ---->
if (substr($sub['link_name'], 0, 8) == "submenu.")
{
$tmp = explode(".", $sub['link_name']);
$subname = $tmp[2];
}
else
{
$subname = $sub['link_name'];
}
// Setup Child Icon --------->
if (!$sub['link_button'] && $params[0] == 'no_icons')
{
$sub_icon = 'no_icons';
}
else
{
$sub_icon = "<img src='";
$sub_icon .= ($sub['link_button']) ? e_IMAGE.'icons/'.$sub['link_button'] : $icon;
$sub_icon .= "' alt='' style='border:0px; vertical-align:bottom; width: 16px; height: 16px' />";
}
if (isset($linklist['sub_'.$sub['link_id']]))
{ // Has Children.
$sub_ids[] = $sub['link_id'];
$text .= self::adnav_main($subname, $sub['link_url'], $sub_icon, 'l_'.$sub['link_id'], $params, $sub['link_open']);
}
else
{
$text .= self::adnav_main($subname, $sub['link_url'], $sub_icon, null, $params, $sub['link_open']);
}
}
$text .= "</div>";
}
else
{
// Display Parent only.
$text .= adnav_cat($lk['link_name'], $lk['link_url'], $link_icon, FALSE, $lk['link_open']);
if (isset($sub_ids) && is_array($sub_ids))
{
foreach ($sub_ids as $sub_id)
{
$text .= self::render_sub($linklist, $sub_id, $params, $icon);
}
}
return $text;
}
}
$text .= "</div>";
return $text;
}
}

View File

@ -9,9 +9,9 @@
* e107 Shortcode handler
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/shortcode_handler.php,v $
* $Revision: 1.37 $
* $Date: 2009-11-20 22:23:02 $
* $Author: e107steved $
* $Revision: 1.38 $
* $Date: 2009-11-23 10:27:42 $
* $Author: e107coders $
*/
if (!defined('e107_INIT')) { exit; }
@ -443,6 +443,7 @@ class e_shortcode
if($this->registered_codes[$code]['path'])
{
include_once($this->registered_codes[$code]['path'].strtolower($code).'.php');
}
if(function_exists($_function))
{
@ -471,8 +472,15 @@ class e_shortcode
if(is_readable(e_FILE.'shortcode/'.strtolower($code).'.php'))
{
$_function = strtolower($code).'_shortcode';
$_class = strtolower($code);
include_once(e_FILE.'shortcode/'.strtolower($code).'.php');
if(function_exists($_function))
if(class_exists($_class))
{
$ret = call_user_func(array($_class,$_function), $parm);
}
elseif(function_exists($_function))
{
$ret = call_user_func($_function, $parm);
}

View File

@ -9,8 +9,8 @@
*
*
* $Source: /cvs_backup/e107_0.8/e107_handlers/sitelinks_class.php,v $
* $Revision: 1.25 $
* $Date: 2009-11-22 14:10:07 $
* $Revision: 1.26 $
* $Date: 2009-11-23 10:27:43 $
* $Author: e107coders $
*/
@ -21,10 +21,12 @@ include_lan(e_LANGUAGEDIR.e_LANGUAGE."/lan_sitelinks.php");
class sitelinks
{
var $eLinkList;
var $eLinkList = array();
function getlinks($cat=1)
{
$this->eLinkList = array(); // clear the array in case getlinks is called 2x on the same page.
$sql = e107::getDb('sqlSiteLinks');
$query = "SELECT * FROM #links WHERE link_category = ".intval($cat)." and link_class IN (".USERCLASS_LIST.") ORDER BY link_order ASC";