diff options
| author | 2011-05-23 06:53:31 +0200 | |
|---|---|---|
| committer | 2011-05-23 06:53:31 +0200 | |
| commit | a11432db93dbfdb0dbc78e1dd384663439799559 (patch) | |
| tree | 374acc61a5be95bda099b355cc80582348d151bd /data/templates/sidebar.block.menu2.php | |
| parent | 97bba97049eeed2ecec022caa641b50ca507cb72 (diff) | |
| download | scuttle-a11432db93dbfdb0dbc78e1dd384663439799559.tar.gz scuttle-a11432db93dbfdb0dbc78e1dd384663439799559.zip | |
first try to implement theming support, which currently does not work at all
Diffstat (limited to 'data/templates/sidebar.block.menu2.php')
| -rw-r--r-- | data/templates/sidebar.block.menu2.php | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/data/templates/sidebar.block.menu2.php b/data/templates/sidebar.block.menu2.php deleted file mode 100644 index 1c177a5..0000000 --- a/data/templates/sidebar.block.menu2.php +++ /dev/null @@ -1,71 +0,0 @@ -<?php -require_once('sidebar.linkedtags.inc.php'); - -/* Manage input */ -$userid = isset($userid)?$userid:0; -$user = isset($user)?$user:null; - - -$logged_on_userid = $userservice->getCurrentUserId(); -if ($logged_on_userid === false) { - $logged_on_userid = NULL; -} - - -$cat_url = createURL('tags', '%s'); -$menu2Tags = $GLOBALS['menu2Tags']; - -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 -//this is unneeded and replaced by the ajax tree anyway. we keep it for -// non-js browsers -foreach ($menu2Tags as $menu2Tag) { - echo ' <li>' - . sprintf( - '<a href="%s">%s</a>', - sprintf($cat_url, $menu2Tag), - $menu2Tag - ) - . '</li>' . "\n"; -} -?> - </ul> -</div> -<script type="text/javascript"> -jQuery("#maintagsmenu") -.jstree({ - "themes" : { - "theme": "default", - "dots": false, - "icons": true, - "url": '<?php echo ROOT_JS ?>themes/default/style.css' - }, - "json_data" : { - "ajax" : { - "url": function(node) { - //-1 is root - if (node == -1 ) { - node = ""; - } else if (node.attr('rel')) { - node = node.attr('rel'); - } else { - return; - } - return "<?php echo ROOT ?>ajax/getadminlinkedtags.php?tag=" + node; - } - } - }, - plugins : [ "themes", "json_data"] -}); -</script> -<?php -} -?> |