OSDN Git Service

清書
authorshizuki <shizuki@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Tue, 16 Jan 2007 14:11:50 +0000 (14:11 +0000)
committershizuki <shizuki@1ca29b6e-896d-4ea0-84a5-967f57386b96>
Tue, 16 Jan 2007 14:11:50 +0000 (14:11 +0000)
git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/plugin@522 1ca29b6e-896d-4ea0-84a5-967f57386b96

trunk/NP_Dtree/NP_Dtree.php
trunk/NP_Dtree/dtree/dtree.php
trunk/NP_Dtree/dtree/dtreedata.php

index 8edeb45..3746954 100644 (file)
@@ -49,14 +49,14 @@ class NP_Dtree extends NucleusPlugin
 
     function install()
     {
-        $this->createOption('folderLinks',    _DTREE_DIR_LINK,  'yesno', 'yes');
-        $this->createOption('useSelection',   _DTREE_SELECTION, 'yesno', 'no');
-        $this->createOption('useCookies',     _DTREE_COOKIE,    'yesno', 'no');
-        $this->createOption('useLines',       _DTREE_LINE,      'yesno', 'yes');
-        $this->createOption('useIcons',       _DTREE_ICON,      'yesno', 'yes');
-        $this->createOption('useStatusText',  _DTREE_ST_TEXT,   'yesno', 'no');
-        $this->createOption('closeSameLevel', _DTREE_CL_SLEVEL, 'yesno', 'no');
-        $this->createOption('inOrder',        _DTREE_IN_ORDER,  'yesno', 'no');
+        $this->createOption('folderLinks',      _DTREE_DIR_LINK,    'yesno',    'yes');
+        $this->createOption('useSelection',     _DTREE_SELECTION,   'yesno',    'no');
+        $this->createOption('useCookies',       _DTREE_COOKIE,      'yesno',    'no');
+        $this->createOption('useLines',         _DTREE_LINE,        'yesno',    'yes');
+        $this->createOption('useIcons',         _DTREE_ICON,        'yesno',    'yes');
+        $this->createOption('useStatusText',    _DTREE_ST_TEXT,     'yesno',    'no');
+        $this->createOption('closeSameLevel',   _DTREE_CL_SLEVEL,   'yesno',    'no');
+        $this->createOption('inOrder',          _DTREE_IN_ORDER,    'yesno',    'no');
     }
 
     function init()
@@ -124,6 +124,9 @@ class NP_Dtree extends NucleusPlugin
               . ' | ' . "\n"
               . '<a href="javascript: ' . $randomID . 'd.closeAll();">' . _DTREE_CLOSEALL . '</a>' . "\n";
         echo $data;
+/*        if (!(intRequestVar('page') > 0) !$catid && !$subcatid) {
+            echo '<script type="text/javascript">' . $randomID . 'd.openAll();</script>';
+        }*/
 
     }
 
@@ -133,4 +136,4 @@ class NP_Dtree extends NucleusPlugin
     }
 
 }
-?>
+?>
\ No newline at end of file
index fb2d742..1946ce5 100644 (file)
@@ -1 +1,722 @@
-/*--------------------------------------------------|\r| dTree 2.05 | www.destroydrop.com/javascript/tree/ |\r|---------------------------------------------------|\r| Copyright (c) 2002-2003 Geir Landr\e$B!&\e(B              |\r|                                                   |\r| This script can be used freely as long as all     |\r| copyright messages are intact.                    |\r|                                                   |\r| Updated: 17.04.2003                               |\r|--------------------------------------------------*/\r\r\r<?php\r     $strRel = '../../../';\r include($strRel . 'config.php');\r       include($DIR_LIBS . 'PLUGINADMIN.php');\r                $oPluginAdmin =  new PluginAdmin('Dtree');\r             $plug         =& $oPluginAdmin->plugin;\r                $imgpath      =  $plug->getAdminURL();\r//               $imgpath = 'nucleus/plugins/dtree/';\r\r          if ($plug->getOption('folderLinks') == 'yes') {\r                        $folderLinks = 'true,';\r                } else {\r                       $folderLinks = 'false,';\r               }\r              if ($plug->getOption('useSelection') == 'yes') {\r                       $useSelection = 'true,';\r               } else {\r                       $useSelection = 'false,';\r              }\r              if ($plug->getOption('useCookies') == 'yes') {\r                 $useCookies = 'true,';\r         } else {\r                       $useCookies = 'false,';\r                }\r              if ($plug->getOption('useLines') == 'yes') {\r                   $useLines = 'true,';\r           } else {\r                       $useLines = 'false,';\r          }\r              if ($plug->getOption('useIcons') == 'yes') {\r                   $useIcons = 'true,';\r           } else {\r                       $useIcons = 'false,';\r          }\r              if ($plug->getOption('useStatusText') == 'yes') {\r                      $useStatusText = 'true,';\r              } else {\r                       $useStatusText = 'false,';\r             }\r              if ($plug->getOption('closeSameLevel') == 'yes') {\r                     $closeSameLevel = 'true,';\r             } else {\r                       $closeSameLevel = 'false,';\r            }\r              if ($plug->getOption('inOrder') == 'yes') {\r                    $inOrder = 'true';\r             } else {\r                       $inOrder = 'false';\r            }\r\r?>\r// Node object\r\rvar imgpath = "<?php echo $imgpath;?>";\r\rfunction Node(id, pid, name, url, title, target, icon, iconOpen, open) {\r\r       this.id = id;\r\r this.pid = pid;\r\r       this.name = name;\r\r     this.url = url;\r\r       this.title = title;\r\r   this.target = target;\r\r this.icon = icon;\r\r     this.iconOpen = iconOpen;\r\r     this._io = open || false;\r\r     this._is = false;\r\r     this._ls = false;\r\r     this._hc = false;\r\r     this._ai = 0;\r\r this._p;\r\r};\r\r// Tree object\r\rfunction dTree(objName) {\r\r       this.config = {\r                target : null,\r\r                folderLinks             : <?php echo $folderLinks ?>\r           useSelection    : <?php echo $useSelection ?>\r          useCookies              : <?php echo $useCookies ?>\r            useLines                : <?php echo $useLines ?>\r              useIcons                : <?php echo $useIcons ?>\r              useStatusText   : <?php echo $useStatusText ?>\r         closeSameLevel  : <?php echo $closeSameLevel ?>\r                inOrder                 : <?php echo $inOrder ?>\r\r//            folderLinks                     : true,\r//              useSelection            : false,\r//             useCookies                      : false,\r//             useLines                                : false,\r//             useIcons                                : false,\r//             useStatusText           : true,\r//              closeSameLevel  : true,\r//              inOrder                                 : false\r        }\r\r     this.icon = {\r\r         root                    : imgpath + 'img/base.gif',\r            folder                  : imgpath + 'img/folder.gif',\r          folderOpen              : imgpath + 'img/folderopen.gif',\r//            node                    : imgpath + 'img/page.gif',\r            node                    : imgpath + 'img/folder.gif',\r          empty                   : imgpath + 'img/empty.gif',\r           line                    : imgpath + 'img/line.gif',\r            join                    : imgpath + 'img/join.gif',\r            joinBottom              : imgpath + 'img/joinbottom.gif',\r              plus                    : imgpath + 'img/plus.gif',\r            plusBottom              : imgpath + 'img/plusbottom.gif',\r              minus                   : imgpath + 'img/minus.gif',\r           minusBottom             : imgpath + 'img/minusbottom.gif',\r             nlPlus                  : imgpath + 'img/nolines_plus.gif',\r            nlMinus                 : imgpath + 'img/nolines_minus.gif'\r\r   };\r\r    this.obj = objName;\r\r   this.aNodes = [];\r\r     this.aIndent = [];\r\r    this.root = new Node(-1);\r\r     this.selectedNode = null;\r\r     this.selectedFound = false;\r\r   this.completed = false;\r\r};\r\r\r\r// Adds a new node to the node array\r\rdTree.prototype.add = function(id, pid, name, url, title, target, icon, iconOpen, open) {\r\r        this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, title, target, icon, iconOpen, open);\r\r};\r\r\r\r// Open/close all nodes\r\rdTree.prototype.openAll = function() {\r\r   this.oAll(true);\r\r};\r\rdTree.prototype.closeAll = function() {\r\r this.oAll(false);\r\r};\r\r\r\r// Outputs the tree to the page\r\rdTree.prototype.toString = function() {\r\r     var str = '<div class="dtree">\n';\r\r    if (document.getElementById) {\r\r                if (this.config.useCookies) this.selectedNode = this.getSelected();\r\r           str += this.addNode(this.root);\r\r       } else str += 'Browser not supported.';\r\r       str += '</div>';\r\r      if (!this.selectedFound) this.selectedNode = null;\r\r    this.completed = true;\r\r        return str;\r\r};\r\r\r\r// Creates the tree structure\r\rdTree.prototype.addNode = function(pNode) {\r\r var str = '';\r\r var n=0;\r\r      if (this.config.inOrder) n = pNode._ai;\r\r       for (n; n<this.aNodes.length; n++) {\r\r          if (this.aNodes[n].pid == pNode.id) {\r\r                 var cn = this.aNodes[n];\r\r                      cn._p = pNode;\r\r                        cn._ai = n;\r\r                   this.setCS(cn);\r\r                       if (!cn.target && this.config.target) cn.target = this.config.target;\r\r                 if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);\r\r                 if (!this.config.folderLinks && cn._hc) cn.url = null;\r\r                        if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {\r\r                                  cn._is = true;\r\r                                        this.selectedNode = n;\r\r                                        this.selectedFound = true;\r\r                    }\r\r                     str += this.node(cn, n);\r\r                      if (cn._ls) break;\r\r            }\r\r     }\r\r     return str;\r\r};\r\r\r\r// Creates the node icon, url and text\r\rdTree.prototype.node = function(node, nodeId) {\r\r    var str = '<div class="dTreeNode">' + this.indent(node, nodeId);\r\r      if (this.config.useIcons) {\r\r           if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node);\r\r           if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;\r\r               if (this.root.id == node.pid) {\r\r                       node.icon = this.icon.root;\r\r                   node.iconOpen = this.icon.root;\r\r               }\r\r             str += '\n<img id="i' + this.obj + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />\n';\r\r   }\r\r     if (node.url) {\r\r               str += '<a id="s' + this.obj + nodeId + '" class="' + ((this.config.useSelection) ? ((node._is ? 'nodeSel' : 'node')) : 'node') + '" href="' + node.url + '"';\r\r                if (node.title) str += ' title="' + node.title + '"';\r\r         if (node.target) str += ' target="' + node.target + '"';\r\r              if (this.config.useStatusText) str += ' onmouseover="window.status=\'' + node.name + '\';return true;" onmouseout="window.status=\'\';return true;" ';\r\r                if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))\r\r                 str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';\r\r          str += '>\n';\r\r }\r\r     else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)\r\r             str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" class="node">';\r\r     str += node.name;\r\r     if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '</a>\n';\r\r       str += '</div>\n';\r\r    if (node._hc) {\r\r               str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';">\n';\r\r           str += this.addNode(node);\r\r            str += '</div>\n';\r\r    }\r\r     this.aIndent.pop();\r\r   return str;\r\r};\r\r\r\r// Adds the empty and line icons\r\rdTree.prototype.indent = function(node, nodeId) {\r\r        var str = '';\r\r if (this.root.id != node.pid) {\r\r               for (var n=0; n<this.aIndent.length; n++)\r\r                     str += '\n<img src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" alt="" />';\r\r                (node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);\r\r             if (node._hc) {\r\r                       str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';\r\r                        if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;\r\r                  else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );\r\r                  str += '" alt="" /></a>\n';\r\r           } else str += '<img src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" alt="" />\n';\r\r   }\r\r     return str;\r\r};\r\r\r\r// Checks if a node has any children and if it is the last sibling\r\rdTree.prototype.setCS = function(node) {\r\r       var lastId;\r\r   for (var n=0; n<this.aNodes.length; n++) {\r\r            if (this.aNodes[n].pid == node.id) node._hc = true;\r\r           if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;\r\r       }\r\r     if (lastId==node.id) node._ls = true;\r\r};\r\r\r\r// Returns the selected node\r\rdTree.prototype.getSelected = function() {\r\r var sn = this.getCookie('cs' + this.obj);\r\r     return (sn) ? sn : null;\r\r};\r\r\r\r// Highlights the selected node\r\rdTree.prototype.s = function(id) {\r\r   if (!this.config.useSelection) return;\r\r        var cn = this.aNodes[id];\r\r     if (cn._hc && !this.config.folderLinks) return;\r\r       if (this.selectedNode != id) {\r\r                if (this.selectedNode || this.selectedNode==0) {\r\r                      eOld = document.getElementById("s" + this.obj + this.selectedNode);\r\r                   eOld.className = "node";\r\r              }\r\r             eNew = document.getElementById("s" + this.obj + id);\r\r          eNew.className = "nodeSel";\r\r           this.selectedNode = id;\r\r               if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);\r\r   }\r\r};\r\r\r\r// Toggle Open or close\r\rdTree.prototype.o = function(id) {\r\r  var cn = this.aNodes[id];\r\r     this.nodeStatus(!cn._io, id, cn._ls);\r\r cn._io = !cn._io;\r\r     if (this.config.closeSameLevel) this.closeLevel(cn);\r\r  if (this.config.useCookies) this.updateCookie();\r\r};\r\r\r\r// Open or close all nodes\r\rdTree.prototype.oAll = function(status) {\r\r for (var n=0; n<this.aNodes.length; n++) {\r\r            if (this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {\r\r                       this.nodeStatus(status, n, this.aNodes[n]._ls)\r\r                        this.aNodes[n]._io = status;\r\r          }\r\r     }\r\r     if (this.config.useCookies) this.updateCookie();\r\r};\r\r\r\r// Opens the tree to a specific node\r\rdTree.prototype.openTo = function(nId, bSelect, bFirst) {\r\r       if (!bFirst) {\r\r                for (var n=0; n<this.aNodes.length; n++) {\r\r                    if (this.aNodes[n].id == nId) {\r\r                               nId=n;\r\r                                break;\r\r                        }\r\r             }\r\r     }\r\r     var cn=this.aNodes[nId];\r\r      if (cn.pid==this.root.id || !cn._p) return;\r\r   cn._io = true;\r\r        cn._is = bSelect;\r\r     if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);\r\r  if (this.completed && bSelect) this.s(cn._ai);\r\r        else if (bSelect) this._sn=cn._ai;\r\r    this.openTo(cn._p._ai, false, true);\r\r};\r\r\r\r// Closes all nodes on the same level as certain node\r\rdTree.prototype.closeLevel = function(node) {\r\r      for (var n=0; n<this.aNodes.length; n++) {\r\r            if (this.aNodes[n].pid == node.pid && this.aNodes[n].id != node.id && this.aNodes[n]._hc) {\r\r                   this.nodeStatus(false, n, this.aNodes[n]._ls);\r\r                        this.aNodes[n]._io = false;\r\r                   this.closeAllChildren(this.aNodes[n]);\r\r                }\r\r     }\r\r}\r\r\r\r// Closes all children of a node\r\rdTree.prototype.closeAllChildren = function(node) {\r\r for (var n=0; n<this.aNodes.length; n++) {\r\r            if (this.aNodes[n].pid == node.id && this.aNodes[n]._hc) {\r\r                    if (this.aNodes[n]._io) this.nodeStatus(false, n, this.aNodes[n]._ls);\r\r                        this.aNodes[n]._io = false;\r\r                   this.closeAllChildren(this.aNodes[n]);          \r\r              }\r\r     }\r\r}\r\r\r\r// Change the status of a node(open or closed)\r\rdTree.prototype.nodeStatus = function(status, id, bottom) {\r\r   eDiv    = document.getElementById('d' + this.obj + id);\r\r       eJoin   = document.getElementById('j' + this.obj + id);\r\r       if (this.config.useIcons) {\r\r           eIcon   = document.getElementById('i' + this.obj + id);\r\r               eIcon.src = (status) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;\r\r       }\r\r     eJoin.src = (this.config.useLines)?\r\r   ((status)?((bottom)?this.icon.minusBottom:this.icon.minus):((bottom)?this.icon.plusBottom:this.icon.plus)):\r\r   ((status)?this.icon.nlMinus:this.icon.nlPlus);\r\r        eDiv.style.display = (status) ? 'block': 'none';\r\r};\r\r\r\r\r\r// [Cookie] Clears a cookie\r\rdTree.prototype.clearCookie = function() {\r\r     var now = new Date();\r\r var yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);\r\r        this.setCookie('co'+this.obj, 'cookieValue', yesterday);\r\r      this.setCookie('cs'+this.obj, 'cookieValue', yesterday);\r\r};\r\r\r\r// [Cookie] Sets value in a cookie\r\rdTree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) {\r\r    document.cookie =\r\r             escape(cookieName) + '=' + escape(cookieValue)\r\r                + (expires ? '; expires=' + expires.toGMTString() : '')\r\r               + (path ? '; path=' + path : '')\r\r              + (domain ? '; domain=' + domain : '')\r\r                + (secure ? '; secure' : '');\r\r};\r\r\r\r// [Cookie] Gets a value from a cookie\r\rdTree.prototype.getCookie = function(cookieName) {\r\r       var cookieValue = '';\r\r var posName = document.cookie.indexOf(escape(cookieName) + '=');\r\r      if (posName != -1) {\r\r          var posValue = posName + (escape(cookieName) + '=').length;\r\r           var endPos = document.cookie.indexOf(';', posValue);\r\r          if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));\r\r                else cookieValue = unescape(document.cookie.substring(posValue));\r\r     }\r\r     return (cookieValue);\r\r};\r\r\r\r// [Cookie] Returns ids of open nodes as a string\r\rdTree.prototype.updateCookie = function() {\r\r   var str = '';\r\r for (var n=0; n<this.aNodes.length; n++) {\r\r            if (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id) {\r\r                       if (str) str += '.';\r\r                  str += this.aNodes[n].id;\r\r             }\r\r     }\r\r     this.setCookie('co' + this.obj, str);\r\r};\r\r\r\r// [Cookie] Checks if a node id is in a cookie\r\rdTree.prototype.isOpen = function(id) {\r\r  var aOpen = this.getCookie('co' + this.obj).split('.');\r\r       for (var n=0; n<aOpen.length; n++)\r\r            if (aOpen[n] == id) return true;\r\r      return false;\r\r};\r\r\r\r// If Push and pop is not implemented by the browser\r\rif (!Array.prototype.push) {\r\r       Array.prototype.push = function array_push() {\r\r                for(var i=0;i<arguments.length;i++)\r\r                   this[this.length]=arguments[i];\r\r               return this.length;\r\r   }\r\r};\r\rif (!Array.prototype.pop) {\r\r    Array.prototype.pop = function array_pop() {\r\r          lastElement = this[this.length-1];\r\r            this.length = Math.max(this.length-1,0);\r\r              return lastElement;\r\r   }\r\r};
\ No newline at end of file
+/*--------------------------------------------------|
+| dTree 2.05 | www.destroydrop.com/javascript/tree/ |
+|---------------------------------------------------|
+| Copyright (c) 2002-2003 Geir Landr\e$B!&\e(B              |
+|                                                   |
+| This script can be used freely as long as all     |
+| copyright messages are intact.                    |
+|                                                   |
+| Updated: 17.04.2003                               |
+|--------------------------------------------------*/
+
+
+<?php
+       $strRel = '../../../';
+       include($strRel . 'config.php');
+       include($DIR_LIBS . 'PLUGINADMIN.php');
+               $oPluginAdmin =  new PluginAdmin('Dtree');
+               $plug         =& $oPluginAdmin->plugin;
+               $imgpath      =  $plug->getAdminURL();
+//             $imgpath = 'nucleus/plugins/dtree/';
+
+               if ($plug->getOption('folderLinks') == 'yes') {
+                       $folderLinks = 'true,';
+               } else {
+                       $folderLinks = 'false,';
+               }
+               if ($plug->getOption('useSelection') == 'yes') {
+                       $useSelection = 'true,';
+               } else {
+                       $useSelection = 'false,';
+               }
+               if ($plug->getOption('useCookies') == 'yes') {
+                       $useCookies = 'true,';
+               } else {
+                       $useCookies = 'false,';
+               }
+               if ($plug->getOption('useLines') == 'yes') {
+                       $useLines = 'true,';
+               } else {
+                       $useLines = 'false,';
+               }
+               if ($plug->getOption('useIcons') == 'yes') {
+                       $useIcons = 'true,';
+               } else {
+                       $useIcons = 'false,';
+               }
+               if ($plug->getOption('useStatusText') == 'yes') {
+                       $useStatusText = 'true,';
+               } else {
+                       $useStatusText = 'false,';
+               }
+               if ($plug->getOption('closeSameLevel') == 'yes') {
+                       $closeSameLevel = 'true,';
+               } else {
+                       $closeSameLevel = 'false,';
+               }
+               if ($plug->getOption('inOrder') == 'yes') {
+                       $inOrder = 'true';
+               } else {
+                       $inOrder = 'false';
+               }
+
+?>
+// Node object
+
+var imgpath = "<?php echo $imgpath;?>";
+
+function Node(id, pid, name, url, title, target, icon, iconOpen, open) {
+
+       this.id = id;
+
+       this.pid = pid;
+
+       this.name = name;
+
+       this.url = url;
+
+       this.title = title;
+
+       this.target = target;
+
+       this.icon = icon;
+
+       this.iconOpen = iconOpen;
+
+       this._io = open || false;
+
+       this._is = false;
+
+       this._ls = false;
+
+       this._hc = false;
+
+       this._ai = 0;
+
+       this._p;
+
+};
+
+// Tree object
+
+function dTree(objName) {
+
+       this.config = {
+               target : null,
+
+               folderLinks             : <?php echo $folderLinks ?>
+               useSelection    : <?php echo $useSelection ?>
+               useCookies              : <?php echo $useCookies ?>
+               useLines                : <?php echo $useLines ?>
+               useIcons                : <?php echo $useIcons ?>
+               useStatusText   : <?php echo $useStatusText ?>
+               closeSameLevel  : <?php echo $closeSameLevel ?>
+               inOrder                 : <?php echo $inOrder ?>
+
+//             folderLinks                     : true,
+//             useSelection            : false,
+//             useCookies                      : false,
+//             useLines                                : false,
+//             useIcons                                : false,
+//             useStatusText           : true,
+//             closeSameLevel  : true,
+//             inOrder                                 : false
+       }
+
+       this.icon = {
+
+               root                    : imgpath + 'img/base.gif',
+               folder                  : imgpath + 'img/folder.gif',
+               folderOpen              : imgpath + 'img/folderopen.gif',
+//             node                    : imgpath + 'img/page.gif',
+               node                    : imgpath + 'img/folder.gif',
+               empty                   : imgpath + 'img/empty.gif',
+               line                    : imgpath + 'img/line.gif',
+               join                    : imgpath + 'img/join.gif',
+               joinBottom              : imgpath + 'img/joinbottom.gif',
+               plus                    : imgpath + 'img/plus.gif',
+               plusBottom              : imgpath + 'img/plusbottom.gif',
+               minus                   : imgpath + 'img/minus.gif',
+               minusBottom             : imgpath + 'img/minusbottom.gif',
+               nlPlus                  : imgpath + 'img/nolines_plus.gif',
+               nlMinus                 : imgpath + 'img/nolines_minus.gif'
+
+       };
+
+       this.obj = objName;
+
+       this.aNodes = [];
+
+       this.aIndent = [];
+
+       this.root = new Node(-1);
+
+       this.selectedNode = null;
+
+       this.selectedFound = false;
+
+       this.completed = false;
+
+};
+
+
+
+// Adds a new node to the node array
+
+dTree.prototype.add = function(id, pid, name, url, title, target, icon, iconOpen, open) {
+
+       this.aNodes[this.aNodes.length] = new Node(id, pid, name, url, title, target, icon, iconOpen, open);
+
+};
+
+
+
+// Open/close all nodes
+
+dTree.prototype.openAll = function() {
+
+       this.oAll(true);
+
+};
+
+dTree.prototype.closeAll = function() {
+
+       this.oAll(false);
+
+};
+
+
+
+// Outputs the tree to the page
+
+dTree.prototype.toString = function() {
+
+       var str = '<div class="dtree">\n';
+
+       if (document.getElementById) {
+
+               if (this.config.useCookies) this.selectedNode = this.getSelected();
+
+               str += this.addNode(this.root);
+
+       } else str += 'Browser not supported.';
+
+       str += '</div>';
+
+       if (!this.selectedFound) this.selectedNode = null;
+
+       this.completed = true;
+
+       return str;
+
+};
+
+
+
+// Creates the tree structure
+
+dTree.prototype.addNode = function(pNode) {
+
+       var str = '';
+
+       var n=0;
+
+       if (this.config.inOrder) n = pNode._ai;
+
+       for (n; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == pNode.id) {
+
+                       var cn = this.aNodes[n];
+
+                       cn._p = pNode;
+
+                       cn._ai = n;
+
+                       this.setCS(cn);
+
+                       if (!cn.target && this.config.target) cn.target = this.config.target;
+
+                       if (cn._hc && !cn._io && this.config.useCookies) cn._io = this.isOpen(cn.id);
+
+                       if (!this.config.folderLinks && cn._hc) cn.url = null;
+
+                       if (this.config.useSelection && cn.id == this.selectedNode && !this.selectedFound) {
+
+                                       cn._is = true;
+
+                                       this.selectedNode = n;
+
+                                       this.selectedFound = true;
+
+                       }
+
+                       str += this.node(cn, n);
+
+                       if (cn._ls) break;
+
+               }
+
+       }
+
+       return str;
+
+};
+
+
+
+// Creates the node icon, url and text
+
+dTree.prototype.node = function(node, nodeId) {
+
+       var str = '<div class="dTreeNode">' + this.indent(node, nodeId);
+
+       if (this.config.useIcons) {
+
+               if (!node.icon) node.icon = (this.root.id == node.pid) ? this.icon.root : ((node._hc) ? this.icon.folder : this.icon.node);
+
+               if (!node.iconOpen) node.iconOpen = (node._hc) ? this.icon.folderOpen : this.icon.node;
+
+               if (this.root.id == node.pid) {
+
+                       node.icon = this.icon.root;
+
+                       node.iconOpen = this.icon.root;
+
+               }
+
+               str += '\n<img id="i' + this.obj + nodeId + '" src="' + ((node._io) ? node.iconOpen : node.icon) + '" alt="" />\n';
+
+       }
+
+       if (node.url) {
+
+               str += '<a id="s' + this.obj + nodeId + '" class="' + ((this.config.useSelection) ? ((node._is ? 'nodeSel' : 'node')) : 'node') + '" href="' + node.url + '"';
+
+               if (node.title) str += ' title="' + node.title + '"';
+
+               if (node.target) str += ' target="' + node.target + '"';
+
+               if (this.config.useStatusText) str += ' onmouseover="window.status=\'' + node.name + '\';return true;" onmouseout="window.status=\'\';return true;" ';
+
+               if (this.config.useSelection && ((node._hc && this.config.folderLinks) || !node._hc))
+
+                       str += ' onclick="javascript: ' + this.obj + '.s(' + nodeId + ');"';
+
+               str += '>\n';
+
+       }
+
+       else if ((!this.config.folderLinks || !node.url) && node._hc && node.pid != this.root.id)
+
+               str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');" class="node">';
+
+       str += node.name;
+
+       if (node.url || ((!this.config.folderLinks || !node.url) && node._hc)) str += '</a>\n';
+
+       str += '</div>\n';
+
+       if (node._hc) {
+
+               str += '<div id="d' + this.obj + nodeId + '" class="clip" style="display:' + ((this.root.id == node.pid || node._io) ? 'block' : 'none') + ';">\n';
+
+               str += this.addNode(node);
+
+               str += '</div>\n';
+
+       }
+
+       this.aIndent.pop();
+
+       return str;
+
+};
+
+
+
+// Adds the empty and line icons
+
+dTree.prototype.indent = function(node, nodeId) {
+
+       var str = '';
+
+       if (this.root.id != node.pid) {
+
+               for (var n=0; n<this.aIndent.length; n++)
+
+                       str += '\n<img src="' + ( (this.aIndent[n] == 1 && this.config.useLines) ? this.icon.line : this.icon.empty ) + '" alt="" />';
+
+               (node._ls) ? this.aIndent.push(0) : this.aIndent.push(1);
+
+               if (node._hc) {
+
+                       str += '<a href="javascript: ' + this.obj + '.o(' + nodeId + ');"><img id="j' + this.obj + nodeId + '" src="';
+
+                       if (!this.config.useLines) str += (node._io) ? this.icon.nlMinus : this.icon.nlPlus;
+
+                       else str += ( (node._io) ? ((node._ls && this.config.useLines) ? this.icon.minusBottom : this.icon.minus) : ((node._ls && this.config.useLines) ? this.icon.plusBottom : this.icon.plus ) );
+
+                       str += '" alt="" /></a>\n';
+
+               } else str += '<img src="' + ( (this.config.useLines) ? ((node._ls) ? this.icon.joinBottom : this.icon.join ) : this.icon.empty) + '" alt="" />\n';
+
+       }
+
+       return str;
+
+};
+
+
+
+// Checks if a node has any children and if it is the last sibling
+
+dTree.prototype.setCS = function(node) {
+
+       var lastId;
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == node.id) node._hc = true;
+
+               if (this.aNodes[n].pid == node.pid) lastId = this.aNodes[n].id;
+
+       }
+
+       if (lastId==node.id) node._ls = true;
+
+};
+
+
+
+// Returns the selected node
+
+dTree.prototype.getSelected = function() {
+
+       var sn = this.getCookie('cs' + this.obj);
+
+       return (sn) ? sn : null;
+
+};
+
+
+
+// Highlights the selected node
+
+dTree.prototype.s = function(id) {
+
+       if (!this.config.useSelection) return;
+
+       var cn = this.aNodes[id];
+
+       if (cn._hc && !this.config.folderLinks) return;
+
+       if (this.selectedNode != id) {
+
+               if (this.selectedNode || this.selectedNode==0) {
+
+                       eOld = document.getElementById("s" + this.obj + this.selectedNode);
+
+                       eOld.className = "node";
+
+               }
+
+               eNew = document.getElementById("s" + this.obj + id);
+
+               eNew.className = "nodeSel";
+
+               this.selectedNode = id;
+
+               if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);
+
+       }
+
+};
+
+
+
+// Toggle Open or close
+
+dTree.prototype.o = function(id) {
+
+       var cn = this.aNodes[id];
+
+       this.nodeStatus(!cn._io, id, cn._ls);
+
+       cn._io = !cn._io;
+
+       if (this.config.closeSameLevel) this.closeLevel(cn);
+
+       if (this.config.useCookies) this.updateCookie();
+
+};
+
+
+
+// Open or close all nodes
+
+dTree.prototype.oAll = function(status) {
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n]._hc && this.aNodes[n].pid != this.root.id) {
+
+                       this.nodeStatus(status, n, this.aNodes[n]._ls)
+
+                       this.aNodes[n]._io = status;
+
+               }
+
+       }
+
+       if (this.config.useCookies) this.updateCookie();
+
+};
+
+
+
+// Opens the tree to a specific node
+
+dTree.prototype.openTo = function(nId, bSelect, bFirst) {
+
+       if (!bFirst) {
+
+               for (var n=0; n<this.aNodes.length; n++) {
+
+                       if (this.aNodes[n].id == nId) {
+
+                               nId=n;
+
+                               break;
+
+                       }
+
+               }
+
+       }
+
+       var cn=this.aNodes[nId];
+
+       if (cn.pid==this.root.id || !cn._p) return;
+
+       cn._io = true;
+
+       cn._is = bSelect;
+
+       if (this.completed && cn._hc) this.nodeStatus(true, cn._ai, cn._ls);
+
+       if (this.completed && bSelect) this.s(cn._ai);
+
+       else if (bSelect) this._sn=cn._ai;
+
+       this.openTo(cn._p._ai, false, true);
+
+};
+
+
+
+// Closes all nodes on the same level as certain node
+
+dTree.prototype.closeLevel = function(node) {
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == node.pid && this.aNodes[n].id != node.id && this.aNodes[n]._hc) {
+
+                       this.nodeStatus(false, n, this.aNodes[n]._ls);
+
+                       this.aNodes[n]._io = false;
+
+                       this.closeAllChildren(this.aNodes[n]);
+
+               }
+
+       }
+
+}
+
+
+
+// Closes all children of a node
+
+dTree.prototype.closeAllChildren = function(node) {
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n].pid == node.id && this.aNodes[n]._hc) {
+
+                       if (this.aNodes[n]._io) this.nodeStatus(false, n, this.aNodes[n]._ls);
+
+                       this.aNodes[n]._io = false;
+
+                       this.closeAllChildren(this.aNodes[n]);          
+
+               }
+
+       }
+
+}
+
+
+
+// Change the status of a node(open or closed)
+
+dTree.prototype.nodeStatus = function(status, id, bottom) {
+
+       eDiv    = document.getElementById('d' + this.obj + id);
+
+       eJoin   = document.getElementById('j' + this.obj + id);
+
+       if (this.config.useIcons) {
+
+               eIcon   = document.getElementById('i' + this.obj + id);
+
+               eIcon.src = (status) ? this.aNodes[id].iconOpen : this.aNodes[id].icon;
+
+       }
+
+       eJoin.src = (this.config.useLines)?
+
+       ((status)?((bottom)?this.icon.minusBottom:this.icon.minus):((bottom)?this.icon.plusBottom:this.icon.plus)):
+
+       ((status)?this.icon.nlMinus:this.icon.nlPlus);
+
+       eDiv.style.display = (status) ? 'block': 'none';
+
+};
+
+
+
+
+
+// [Cookie] Clears a cookie
+
+dTree.prototype.clearCookie = function() {
+
+       var now = new Date();
+
+       var yesterday = new Date(now.getTime() - 1000 * 60 * 60 * 24);
+
+       this.setCookie('co'+this.obj, 'cookieValue', yesterday);
+
+       this.setCookie('cs'+this.obj, 'cookieValue', yesterday);
+
+};
+
+
+
+// [Cookie] Sets value in a cookie
+
+dTree.prototype.setCookie = function(cookieName, cookieValue, expires, path, domain, secure) {
+
+       document.cookie =
+
+               escape(cookieName) + '=' + escape(cookieValue)
+
+               + (expires ? '; expires=' + expires.toGMTString() : '')
+
+               + (path ? '; path=' + path : '')
+
+               + (domain ? '; domain=' + domain : '')
+
+               + (secure ? '; secure' : '');
+
+};
+
+
+
+// [Cookie] Gets a value from a cookie
+
+dTree.prototype.getCookie = function(cookieName) {
+
+       var cookieValue = '';
+
+       var posName = document.cookie.indexOf(escape(cookieName) + '=');
+
+       if (posName != -1) {
+
+               var posValue = posName + (escape(cookieName) + '=').length;
+
+               var endPos = document.cookie.indexOf(';', posValue);
+
+               if (endPos != -1) cookieValue = unescape(document.cookie.substring(posValue, endPos));
+
+               else cookieValue = unescape(document.cookie.substring(posValue));
+
+       }
+
+       return (cookieValue);
+
+};
+
+
+
+// [Cookie] Returns ids of open nodes as a string
+
+dTree.prototype.updateCookie = function() {
+
+       var str = '';
+
+       for (var n=0; n<this.aNodes.length; n++) {
+
+               if (this.aNodes[n]._io && this.aNodes[n].pid != this.root.id) {
+
+                       if (str) str += '.';
+
+                       str += this.aNodes[n].id;
+
+               }
+
+       }
+
+       this.setCookie('co' + this.obj, str);
+
+};
+
+
+
+// [Cookie] Checks if a node id is in a cookie
+
+dTree.prototype.isOpen = function(id) {
+
+       var aOpen = this.getCookie('co' + this.obj).split('.');
+
+       for (var n=0; n<aOpen.length; n++)
+
+               if (aOpen[n] == id) return true;
+
+       return false;
+
+};
+
+
+
+// If Push and pop is not implemented by the browser
+
+if (!Array.prototype.push) {
+
+       Array.prototype.push = function array_push() {
+
+               for(var i=0;i<arguments.length;i++)
+
+                       this[this.length]=arguments[i];
+
+               return this.length;
+
+       }
+
+};
+
+if (!Array.prototype.pop) {
+
+       Array.prototype.pop = function array_pop() {
+
+               lastElement = this[this.length-1];
+
+               this.length = Math.max(this.length-1,0);
+
+               return lastElement;
+
+       }
+
+};
\ No newline at end of file
index 789cae0..bc08d1b 100644 (file)
@@ -45,27 +45,30 @@ global $CONF, $manager;
        $CONF['ArchiveListURL'] = $blogurl;
        $CONF['SearchURL']      = $blogurl;
 
-       echo $objectId . "=new dTree('"
-          . htmlspecialchars($objectId, ENT_QUOTES, _CHARSET)
-          . "');\n";
-       
-       echo $objectId . ".add(0,-1,'"
-          . htmlspecialchars($blogname, ENT_QUOTES, _CHARSET)
-          . "');\n";
+       $printData = $objectId . "=new dTree('" . $objectId . "');\n"
+                          . $objectId . ".add(0,-1,'"
+                          . htmlspecialchars($blogname, ENT_QUOTES, _CHARSET)
+                          . "');\n";
+       echo $printData;
+       unset($printData);
        
        $resq = 'SELECT * FROM %s WHERE cblog = %d';
        $res  = sql_query(sprintf($resq, sql_table('category'), $blogid));
        $n    = 1;
        while ($o = mysql_fetch_object($res)) {
-               $catid = intval($o->catid);
+               $catid                    = intval($o->catid);
                $nodeArray['cat'][$catid] = $n;
-               $url       = createCategoryLink($catid);
-               $printData = $objectId
-                                  . ".add(" . $n
-                                  . ",0,'"
-                                  . htmlspecialchars($o->cname, ENT_QUOTES, _CHARSET) . "','"
-                                  . htmlspecialchars($url, ENT_QUOTES, _CHARSET) . "','"
-                                  . htmlspecialchars($o->cdesc, ENT_QUOTES, _CHARSET) . "');\n";
+               $url                      = createCategoryLink($catid);
+               $printData                = $objectId
+                                                                 . ".add"
+                                                                 . "("
+                                                                 . $n . ","
+                                                                 . "0,"
+                                                                 . "'" . htmlspecialchars($o->cname, ENT_QUOTES, _CHARSET) . "',"
+//                                                               . "'" . htmlspecialchars($url,      ENT_QUOTES, _CHARSET) . "',"
+                                                                 . "'" . $url . "',"
+                                                                 . "'" . htmlspecialchars($o->cdesc, ENT_QUOTES, _CHARSET). "'"
+                                                                 . ");\n";
                echo $printData;
                $catFilter[] = $catid;
                $n++;
@@ -75,13 +78,15 @@ global $CONF, $manager;
        if (!$manager->pluginInstalled('NP_MultipleCategories')) {
                echo 'document.write(' . $objectId . ');';
                if ($itemid = intRequestVar('id')) {
-                       $que    = 'SELECT icat as result FROM %s WHERE inumber = %d';
-                       $catid  = quickQuery(sprintf($que, sql_table('item'), $itemid));
-                       $catid  = intval($catid);
-                       $nodeId = 's' . $objectId . $nodeArray['cat'][$catid];
-                       echo "document.getElementById('"
-                          . htmlspecialchars($nodeId, ENT_QUOTES, _CHARSET)
-                          . "').className = 'selectedNode';";
+                       $que       = 'SELECT icat as result FROM %s WHERE inumber = %d';
+                       $catid     = quickQuery(sprintf($que, sql_table('item'), $itemid));
+                       $catid     = intval($catid);
+                       $nodeId    = 's' . $objectId . $nodeArray['cat'][$catid];
+                       $printData = "document.getElementById('"
+                                          . htmlspecialchars($nodeId, ENT_QUOTES, _CHARSET)
+                                          . "').className = 'selectedNode';";
+                       echo $printData;
+                       unset($printData);
                }
                return;
        }
@@ -110,7 +115,6 @@ global $CONF, $manager;
                $subrequest = 'subcatid';
        }
 //     $query = 'SELECT * FROM %s WHERE catid%s';
-//     $query = 'SELECT * FROM %s WHERE catid%s ORDER BY ordid ASC';
        $query = 'SELECT * FROM %s WHERE catid%s ORDER BY parentid, catid, ordid';
        $query = sprintf($query, $scatTable, $catFilter);
        $res   = sql_query($query);
@@ -134,56 +138,67 @@ global $CONF, $manager;
                $url       = createCategoryLink($cat_id, $linkParam);
 
                if (!empty($parent_id)) {
-                       $pnode = $nodeArray['subcat'][$parent_id];
+                       $pnode = intval($nodeArray['subcat'][$parent_id]);
                } else {
-                       $pnode = $nodeArray['cat'][$cat_id];
+                       $pnode = intval($nodeArray['cat'][$cat_id]);
                }
                $printData =  $objectId
                                   . ".add"
-                                  . "(" . $nodeArray['subcat'][$scatid] . ","
+                                  . "("
+                                  . intval($nodeArray['subcat'][$scatid]) . ","
                                   . $pnode . ","
                                   . "'" . htmlspecialchars($o->sname, ENT_QUOTES, _CHARSET) . "',"
-                                  . "'" . htmlspecialchars($url, ENT_QUOTES, _CHARSET) . "',"
+//                                . "'" . htmlspecialchars($url,      ENT_QUOTES, _CHARSET) . "',"
+                                  . "'" . $url . "',"
                                   . "'" . htmlspecialchars($o->sdesc, ENT_QUOTES, _CHARSET) . "'"
                                   . ");\n";
                echo $printData;
+               unset($printData);
        }
-//     ksort($printData);
-//     foreach($printData as $parentNode => $scatNode) {
-//             foreach($scatNode as $showData) {
-//                     echo $showData;
-//             }
-//     }
 
        echo "document.write(" . $objectId . ");\n";
 
        if ($sid = intRequestVar('sid')) {
-               $nodeId = 's' . $objectId . $nodeArray['subcat'][$sid];
-               echo "document.getElementById('" . $nodeId . "').className='urlselected';\n";
-               echo $objectId . ".openTo(" . $nodeArray['subcat'][$sid] . ",true);\n";
+               $nodeId    = 's' . $objectId . intval($nodeArray['subcat'][$sid]);
+               $printData = "document.getElementById('" . $nodeId . "')"
+                                  . ".className='urlselected';\n"
+                                  . $objectId
+                                  . ".openTo(" . intval($nodeArray['subcat'][$sid]) . ",true);\n";
+               echo $printData;
+               unset($printData);
        } elseif ($cid = intRequestVar('cid')) {
-               $nodeId = 's' . $objectId . $nodeArray['cat'][$cid];
-               echo "document.getElementById('" . $nodeId . "').className='urlselected';\n";
-               echo $objectId . ".openTo(" . $nodeArray['cat'][$cid] . ",true);\n";
+               $nodeId    = 's' . $objectId . intval($nodeArray['cat'][$cid]);
+               $printData = "document.getElementById('" . $nodeId . "')."
+                                  . "className='urlselected';\n"
+                                  . $objectId
+                                  . ".openTo(" . intval($nodeArray['cat'][$cid]) . ",true);\n";
        }
 
        if ($itemid = intRequestVar('id')) {
-               $que    = 'SELECT icat as result FROM %s WHERE inumber = %d';
-               $catid  = quickQuery($que, sql_table('item'), $itemid);
-               $catid  = intva($catid);
-               $nodeId = 's' . $objectId.$nodeArray['cat'][$catid];
-               echo "document.getElementById('" . $nodeId . "').className='selectedNode';\n";
+               $que       = 'SELECT icat as result FROM %s WHERE inumber = %d';
+               $catid     = quickQuery($que, sql_table('item'), $itemid);
+               $catid     = intval($catid);
+               $nodeId    = 's' . $objectId . intval($nodeArray['cat'][$catid]);
+               $printData = "document.getElementById('" . $nodeId . "')"
+                                  . ".className='selectedNode';\n";
+               echo $printData;
+               unset($printData);
                
                //multi catid
-               $que = 'SELECT categories as result FROM %s WHERE item_id = %d';
-               $catids = quickQuery(sprintf($que, sql_table('plug_multiple_categories'), $itemid));
+               $que    = 'SELECT categories as result FROM %s WHERE item_id = %d';
+               $que    = sprintf($que, sql_table('plug_multiple_categories'), $itemid);
+               $catids = quickQuery($que);
                if ($catids) {
                        $catids = explode(',', $catids);
-                       for ($i=0;$i<count($catids);$i++) {
+                       $cCount = count($catids);
+                       for ($i=0; $i < $cCount; $i++) {
                                $catidTemp = intval($catids[$i]);
                                if ($catidTemp != $catid) {
-                                       $nodeId = 's' . $objectId . $nodeArray['cat'][$catidTemp];
-                                       echo "document.getElementById('" . $nodeId . "').className='selectedCatNode';\n";
+                                       $nodeId   = 's' . $objectId . intval($nodeArray['cat'][$catidTemp]);
+                                       $prntData = "document.getElementById('" . $nodeId . "')"
+                                                         . ".className='selectedCatNode';\n";
+                                       echo $printData;
+                                       unset($printData);
                                }
                        }
                }
@@ -195,12 +210,15 @@ global $CONF, $manager;
                if ($scatids) {
                        $scatids = explode(',', $scatids);
                        $scatCnt = count($scatids);
-                       for ($i=0; $i<$scatCnt; $i++) {
-                               $scatid = intval($scatids[$i]);
-                               $nodeId = 's' . $objectId . $nodeArray['subcat'][$scatid];
-                               echo "document.getElementById('" . $nodeId . "').className='selectedScatNode';\n";
-                               echo $objectId . ".openTo(" . $nodeArray['subcat'][$scatid] . ",true);\n";
+                       for ($i=0; $i < $scatCnt; $i++) {
+                               $scatid    = intval($scatids[$i]);
+                               $nodeId    = 's' . $objectId . intval($nodeArray['subcat'][$scatid]);
+                               $printData = "document.getElementById('" . $nodeId . "')"
+                                                  . ".className='selectedScatNode';\n"
+                                                  . $objectId
+                                                  . ".openTo(" . intval($nodeArray['subcat'][$scatid]) . ",true);\n";
+                               echo $printData;
+                               unset($printData);
                        }
                }
        }
-?>
\ No newline at end of file