begin converting menu2 to jquery
This commit is contained in:
parent
3f78133df6
commit
5565b0695f
1 changed files with 15 additions and 18 deletions
|
@ -15,44 +15,41 @@ if ($logged_on_userid === false) {
|
|||
}
|
||||
|
||||
|
||||
$cat_url = createURL('tags', '%2$s');
|
||||
$cat_url = createURL('tags', '%s');
|
||||
$menu2Tags = $GLOBALS['menu2Tags'];
|
||||
|
||||
if (sizeOf($menu2Tags) > 0) {
|
||||
$this->includeTemplate("dojo.inc");
|
||||
?>
|
||||
if (count($menu2Tags) > 0) {
|
||||
?>
|
||||
|
||||
<h2><?php echo T_('Featured Menu Tags');?></h2>
|
||||
|
||||
|
||||
<div id="maintagsmenu"
|
||||
<?php echo 'title="'.T_('This menu is composed of keywords (tags) organized by admins.').'"'?>>
|
||||
|
||||
<ul>
|
||||
<?php
|
||||
foreach($menu2Tags as $menu2Tag) {
|
||||
|
||||
foreach ($menu2Tags as $menu2Tag) {
|
||||
echo ' <li>'
|
||||
. sprintf(
|
||||
'<a href="%s">%s</a>',
|
||||
sprintf($cat_url, $menu2Tag),
|
||||
$menu2Tag
|
||||
)
|
||||
. '</li>';
|
||||
/*
|
||||
echo '<div dojoType="dojo.data.ItemFileReadStore" url="'.ROOT.'ajax/getadminlinkedtags.php?tag='.filter($menu2Tag, 'url').'" jsid="linkedTagStore" ></div>';
|
||||
echo '<div dojoType="dijit.Tree" store="linkedTagStore" labelAttr="name" >';
|
||||
echo '<script type="dojo/method" event="onClick" args="item">';
|
||||
$returnUrl = sprintf($cat_url, filter($user, 'url'), filter('', 'url'));
|
||||
echo 'window.location = "'.$returnUrl.'"+item.name';
|
||||
echo '</script>';
|
||||
//echo '<script type="dojo/method" event="getLabel" args="item">';
|
||||
//echo 'return item.name + "...";';
|
||||
//echo '</script>';
|
||||
//echo '<script type="dojo/method" event="onMouseOver" args="item">';
|
||||
//echo 'i = item.relatedTarget;';
|
||||
//echo 'if(i.innerHTML.charAt(i.innerHTML)=="a") alert(i.innerHTML)';
|
||||
//echo '</script>';
|
||||
//echo '<script type="dojo/method" event="getLabelClass" args="item">';
|
||||
//echo 'return \'treeTag\';';
|
||||
//echo '</script>';
|
||||
echo '</div>';
|
||||
*/
|
||||
}
|
||||
?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue