Advertisement
Guest User

Untitled

a guest
Apr 12th, 2011
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 26.92 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.     <head>
  4.         <title>jQuery demo</title>
  5.         <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  6.         <!-- stylesheets -->
  7.         <link rel="stylesheet" type="text/css" href="/beheer/resources/css/beheer.css" />
  8.         <script src="/dev/cms/pub/jquery/jquery-1.5.2.min.js" type="text/javascript"></script>
  9.         <script src="/dev/cms/pub/jquery.prettyPhoto.js" type="text/javascript"></script>
  10.         <script src="/dev/beheer/resources/scripts/jquery-ui-1.8.11.custom.min.js" type="text/javascript"></script>
  11.     </head>
  12.     <body>
  13.         <div class="table">
  14.             <!-- start CMS content -->
  15.  
  16.             <h1>Menu items</h1>
  17.             <script type="text/javascript">
  18.                 $(document).ready(function() {
  19.                     $('.menuList li > ul').each(function(i) {
  20.  
  21.                         var parent_li = $(this).parent('li');
  22.                         var sub_ul = $(this).remove();
  23.  
  24.                         parent_li.find('img.toggle').css('cursor', 'pointer').click(function() {
  25.                             sub_ul.slideToggle();
  26.                             $(this).toggle();
  27.                             if ($(this).hasClass('plus')) {
  28.                                 $(this).next('img').toggle();
  29.                             } else {
  30.                                 $(this).prev('img').toggle();
  31.                             }
  32.                         });
  33.                         parent_li.append(sub_ul);
  34.  
  35.                         sub_ul.sortable({
  36.                             items: "> li",
  37.                             handle : '.handle',
  38.                             axi: 'y',
  39.                             opacity: 0.6,
  40.                             update : function () {
  41.                                 var order = sub_ul.sortable('serialize');
  42.                                 $("#info").load("?do=update&" + order);
  43.                             }
  44.                         });
  45.  
  46.                         $('.menuList ul').hide();
  47.                     });
  48.  
  49.                     $('.menuList').sortable({
  50.                         items: "> li",
  51.                         handle : '.handle',
  52.                         axi: 'y',
  53.                         opacity: 0.6,
  54.                         update : function () {
  55.                             var order = $('.menuList').sortable('serialize');
  56.                             $("#info").load("?do=update&" + order);
  57.                         }
  58.                     });
  59.  
  60.                     $('.expand').click(function(event) {
  61.                         $('.menuList li > ul').each(function(i) {
  62.                             event.preventDefault();
  63.                             var parent_li = $(this).parent('li');
  64.                             var sub_ul = $(this);
  65.  
  66.                             sub_ul.show();
  67.                         });
  68.                         $('img.plus').hide();
  69.                         $('img.minus').show();
  70.  
  71.                         $('.expand').hide();
  72.                         $('.collapse').fadeIn();
  73.                     });
  74.  
  75.                     $('.collapse').click(function(event) {
  76.                         $('.menuList li > ul').each(function(i) {
  77.                             event.preventDefault();
  78.                             var parent_li = $(this).parent('li');
  79.                             var sub_ul = $(this);
  80.  
  81.                             sub_ul.hide();
  82.                         });
  83.                         $('img.minus').hide();
  84.                         $('img.plus').show();
  85.  
  86.                         $('.collapse').hide();
  87.                         $('.expand').fadeIn();
  88.                     });
  89.                 });
  90.             </script>
  91.  
  92.             <a href="#" class="expand"><img src="/icons/fugues/icons/plus.png" style="vertical-align: middle" alt="Plus" /></a>
  93.             <a href="#" class="expand">Klap alles uit</a>
  94.  
  95.             <a href="" class="collapse" style="display: none"><img src="/icons/fugues/icons/minus.png" style="vertical-align: middle" alt="Plus" /></a>
  96.             <a href="" class="collapse" style="display: none">Klap alles in</a>
  97.             <table style="margin-bottom: 0;">
  98.                 <tr>
  99.                     <th colspan="7">Naam</th>
  100.                 </tr>
  101.             </table>
  102.             <style type="text/css">
  103.                 ul.menuList    { list-style-type: none !important; margin: 0 !important; display: block; }
  104.                 ul.menuList li { display: block; margin: 0 !important; overflow: hidden; padding: 0 !important; }
  105.                 ul.menuList li ul { list-style-type: none !important; margin: 0 !important; }
  106.                 ul.menuList li ul li { margin: 0 !important; padding: 0 !important; }
  107.             </style>
  108.  
  109.             <div id="menuList">
  110.                 <ul class="menuList" id="menu_21">
  111.                     <li id="item_21">
  112.                         <div style="width: 100%; overflow: hidden; height: 20px; border-bottom: 1px solid #CDCDCD; padding: 5px 0;">
  113.                             <div style="float: left; margin-top: 3px; margin-left: 10px;">
  114.                                 <img src="/icons/fugues/icons/arrow-resize-090.png" class="handle" alt="Sleep icon" title="Hiermee kunt u door te slepen de volgorde van de menu knoppen wijzigen." style="vertical-align: middle; cursor: pointer"/>
  115.  
  116.                                 File&nbsp;                        </div>
  117.  
  118.                             <div style="float: right;">
  119.                                 <!-- Bewerk -->
  120.                                 <div style="width: 75px; float: left; padding: 0 8px;">
  121.                                     <a href="/beheer/menu/edit/21/" title="Bewerk deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/pencil.png" alt="Pencil Icon" /></a>
  122.                                     <a href="/beheer/menu/edit/21/" title="Bewerk deze menu knop">Bewerk</a>
  123.                                 </div>
  124.  
  125.                                                             <!-- Bewerk Inhoud-->
  126.                                 <div style="width: 120px; float: left; padding: 0 8px;">
  127.  
  128.                                                                         <a href="/beheer/file/edit/3/" title="Bewerk inhoud"><img style="vertical-align: bottom;" src="/icons/fugues/icons/document--pencil.png" alt="Pencil Icon" /></a>
  129.                                         <a href="/beheer/file/edit/3/" title="Bewerk inhoud">Bewerk inhoud</a>
  130.                                                                     </div>
  131.  
  132.                                 <!-- Rechten -->
  133.                                 <div style="width: 80px; float: left; padding: 0 8px;">
  134.                                     <a href="/beheer/file/permissions/3/" title="Stel de toegangs opties in voor deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/key.png" alt="Key Icon" /></a>
  135.                                     <a href="/beheer/file/permissions/3/" title="Stel de toegangs opties in voor deze menu knop">Toegang</a>
  136.  
  137.                                 </div>
  138.  
  139.                                 <!-- Menu knop toevoegen -->
  140.                                 <div style="width: 95px; float: left; padding: 0 8px;">
  141.                                                                         <a href="/beheer/menu/new/?parent=21" title="Voeg een knop toe onder deze knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/plus-circle.png" alt="A plus icon" /></a>
  142.                                         <a href="/beheer/menu/new/?parent=21" title="Voeg een knop toe onder deze knop">Toevoegen</a>
  143.                                                                     </div>
  144.  
  145.                                 <!-- Verwijderen -->
  146.  
  147.                                 <div style="float: left; padding: 0 8px;">
  148.                                     <a href="/beheer/menu/delete/21/" title="Verwijder deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/cross.png" alt="Delete Icon" /></a>
  149.                                     <a href="/beheer/menu/delete/21/" title="Verwijder deze menu knop">Verwijder</a>
  150.                                 </div>
  151.                             </div>
  152.                         </div>
  153.                     </li>
  154.                     <li id="item_19">
  155.                         <div style="width: 100%; overflow: hidden; height: 20px; border-bottom: 1px solid #CDCDCD; padding: 5px 0;">
  156.                             <!--<div style="float: left; width: 565px; margin-top: 3px; margin-left: 10px;">-->
  157.                             <div style="float: left; margin-top: 3px; margin-left: 10px;">
  158.                                 <img src="/icons/fugues/icons/arrow-resize-090.png" class="handle" alt="Sleep icon" title="Hiermee kunt u door te slepen de volgorde van de menu knoppen wijzigen." style="vertical-align: middle; cursor: pointer"/>
  159.  
  160.                                 Drive in Shows&nbsp;                        </div>
  161.                             <div style="float: right;">
  162.                                 <!-- Bewerk -->
  163.  
  164.                                 <div style="width: 75px; float: left; padding: 0 8px;">
  165.                                     <a href="/beheer/menu/edit/19/" title="Bewerk deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/pencil.png" alt="Pencil Icon" /></a>
  166.                                     <a href="/beheer/menu/edit/19/" title="Bewerk deze menu knop">Bewerk</a>
  167.                                 </div>
  168.  
  169.                                                             <!-- Bewerk Inhoud-->
  170.                                 <div style="width: 120px; float: left; padding: 0 8px;">
  171.                                                                         <a href="/beheer/page/edit/17/" title="Bewerk inhoud"><img style="vertical-align: bottom;" src="/icons/fugues/icons/document--pencil.png" alt="Pencil Icon" /></a>
  172.                                         <a href="/beheer/page/edit/17/" title="Bewerk inhoud">Bewerk inhoud</a>
  173.  
  174.                                                                     </div>
  175.  
  176.                                 <!-- Rechten -->
  177.                                 <div style="width: 80px; float: left; padding: 0 8px;">
  178.                                     <a href="/beheer/page/permissions/17/" title="Stel de toegangs opties in voor deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/key.png" alt="Key Icon" /></a>
  179.                                     <a href="/beheer/page/permissions/17/" title="Stel de toegangs opties in voor deze menu knop">Toegang</a>
  180.                                 </div>
  181.  
  182.                                 <!-- Menu knop toevoegen -->
  183.  
  184.                                 <div style="width: 95px; float: left; padding: 0 8px;">
  185.                                                                         <a href="/beheer/menu/new/?parent=19" title="Voeg een knop toe onder deze knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/plus-circle.png" alt="A plus icon" /></a>
  186.                                         <a href="/beheer/menu/new/?parent=19" title="Voeg een knop toe onder deze knop">Toevoegen</a>
  187.                                                                     </div>
  188.  
  189.                                 <!-- Verwijderen -->
  190.                                 <div style="float: left; padding: 0 8px;">
  191.                                     <a href="/beheer/menu/delete/19/" title="Verwijder deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/cross.png" alt="Delete Icon" /></a>
  192.                                     <a href="/beheer/menu/delete/19/" title="Verwijder deze menu knop">Verwijder</a>
  193.  
  194.                                 </div>
  195.                             </div>
  196.                         </div>
  197.                     </li>
  198.                     <li id="item_32">
  199.                         <div style="width: 100%; overflow: hidden; height: 20px; border-bottom: 1px solid #CDCDCD; padding: 5px 0;">
  200.                             <!--<div style="float: left; width: 565px; margin-top: 3px; margin-left: 10px;">-->
  201.                             <div style="float: left; margin-top: 3px; margin-left: 10px;">
  202.                                 <img src="/icons/fugues/icons/arrow-resize-090.png" class="handle" alt="Sleep icon" title="Hiermee kunt u door te slepen de volgorde van de menu knoppen wijzigen." style="vertical-align: middle; cursor: pointer"/>
  203.  
  204.                                 Module&nbsp;<img src="/icons/fugues/icons/plus-small.png" class="toggle plus"  id="32" style="vertical-align: middle;" /><img src="/icons/fugues/icons/minus-small.png" class="toggle minus"  id="32" style="vertical-align: middle; display: none" />                        </div>
  205.                             <div style="float: right;">
  206.                                 <!-- Bewerk -->
  207.                                 <div style="width: 75px; float: left; padding: 0 8px;">
  208.                                     <a href="/beheer/menu/edit/32/" title="Bewerk deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/pencil.png" alt="Pencil Icon" /></a>
  209.                                     <a href="/beheer/menu/edit/32/" title="Bewerk deze menu knop">Bewerk</a>
  210.                                 </div>
  211.  
  212.                                                             <!-- Bewerk Inhoud-->
  213.                                 <div style="width: 120px; float: left; padding: 0 8px;">
  214.                                                                         <a href="/beheer/module/edit/2/2" title="Bewerk inhoud"><img style="vertical-align: bottom;" src="/icons/fugues/icons/document--pencil.png" alt="Pencil Icon" /></a>
  215.                                         <a href="/beheer/module/edit/2/2" title="Bewerk inhoud">Bewerk inhoud</a>
  216.                                                                     </div>
  217.  
  218.                                 <!-- Rechten -->
  219.                                 <div style="width: 80px; float: left; padding: 0 8px;">
  220.  
  221.                                     <a href="/beheer/module/permissions/2/2/" title="Stel de toegangs opties in voor deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/key.png" alt="Key Icon" /></a>
  222.                                     <a href="/beheer/module/permissions/2/2/" title="Stel de toegangs opties in voor deze menu knop">Toegang</a>
  223.                                 </div>
  224.  
  225.                                 <!-- Menu knop toevoegen -->
  226.                                 <div style="width: 95px; float: left; padding: 0 8px;">
  227.                                                                         <a href="/beheer/menu/new/?parent=32" title="Voeg een knop toe onder deze knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/plus-circle.png" alt="A plus icon" /></a>
  228.                                         <a href="/beheer/menu/new/?parent=32" title="Voeg een knop toe onder deze knop">Toevoegen</a>
  229.  
  230.                                                                     </div>
  231.  
  232.                                 <!-- Verwijderen -->
  233.                                 <div style="float: left; padding: 0 8px;">
  234.                                     <a href="/beheer/menu/delete/32/" title="Verwijder deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/cross.png" alt="Delete Icon" /></a>
  235.                                     <a href="/beheer/menu/delete/32/" title="Verwijder deze menu knop">Verwijder</a>
  236.                                 </div>
  237.                             </div>
  238.                         </div>
  239.  
  240.                         <ul  id="menu_35">
  241.                             <li id="item_35">
  242.                                 <div style="width: 100%; overflow: hidden; height: 20px; border-bottom: 1px solid #CDCDCD; padding: 5px 0;">
  243.                                     <!--<div style="float: left; width: 550px; margin-top: 3px; margin-left: 25px;">-->
  244.                                     <div style="float: left; margin-top: 3px; margin-left: 25px;">
  245.                                         <img src="/icons/fugues/icons/arrow-resize-090.png" class="handle" alt="Sleep icon" title="Hiermee kunt u door te slepen de volgorde van de menu knoppen wijzigen." style="vertical-align: middle; cursor: pointer"/>
  246.  
  247.                                         Guestbook&nbsp;                        </div>
  248.  
  249.                                     <div style="float: right;">
  250.                                         <!-- Bewerk -->
  251.                                         <div style="width: 75px; float: left; padding: 0 8px;">
  252.                                             <a href="/beheer/menu/edit/35/" title="Bewerk deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/pencil.png" alt="Pencil Icon" /></a>
  253.                                             <a href="/beheer/menu/edit/35/" title="Bewerk deze menu knop">Bewerk</a>
  254.                                         </div>
  255.  
  256.                                                                     <!-- Bewerk Inhoud-->
  257.                                         <div style="width: 120px; float: left; padding: 0 8px;">
  258.  
  259.                                                                                 <a href="/beheer/module/edit/1/" title="Bewerk inhoud"><img style="vertical-align: bottom;" src="/icons/fugues/icons/document--pencil.png" alt="Pencil Icon" /></a>
  260.                                                 <a href="/beheer/module/edit/1/" title="Bewerk inhoud">Bewerk inhoud</a>
  261.                                                                             </div>
  262.  
  263.                                         <!-- Rechten -->
  264.                                         <div style="width: 80px; float: left; padding: 0 8px;">
  265.                                             <a href="/beheer/module/permissions/1/" title="Stel de toegangs opties in voor deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/key.png" alt="Key Icon" /></a>
  266.                                             <a href="/beheer/module/permissions/1/" title="Stel de toegangs opties in voor deze menu knop">Toegang</a>
  267.  
  268.                                         </div>
  269.  
  270.                                         <!-- Menu knop toevoegen -->
  271.                                         <div style="width: 95px; float: left; padding: 0 8px;">
  272.                                                                                 <a href="/beheer/menu/new/?parent=35" title="Voeg een knop toe onder deze knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/plus-circle.png" alt="A plus icon" /></a>
  273.                                                 <a href="/beheer/menu/new/?parent=35" title="Voeg een knop toe onder deze knop">Toevoegen</a>
  274.                                                                             </div>
  275.  
  276.                                         <!-- Verwijderen -->
  277.  
  278.                                         <div style="float: left; padding: 0 8px;">
  279.                                             <a href="/beheer/menu/delete/35/" title="Verwijder deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/cross.png" alt="Delete Icon" /></a>
  280.                                             <a href="/beheer/menu/delete/35/" title="Verwijder deze menu knop">Verwijder</a>
  281.                                         </div>
  282.                                     </div>
  283.                                 </div>
  284.                             </li>
  285.                             <li id="item_40">
  286.                                 <div style="width: 100%; overflow: hidden; height: 20px; border-bottom: 1px solid #CDCDCD; padding: 5px 0;">
  287.                                     <!--<div style="float: left; width: 550px; margin-top: 3px; margin-left: 25px;">-->
  288.                                     <div style="float: left; margin-top: 3px; margin-left: 25px;">
  289.                                         <img src="/icons/fugues/icons/arrow-resize-090.png" class="handle" alt="Sleep icon" title="Hiermee kunt u door te slepen de volgorde van de menu knoppen wijzigen." style="vertical-align: middle; cursor: pointer"/>
  290.  
  291.                                         Agenda&nbsp;                        </div>
  292.                                     <div style="float: right;">
  293.                                         <!-- Bewerk -->
  294.  
  295.                                         <div style="width: 75px; float: left; padding: 0 8px;">
  296.                                             <a href="/beheer/menu/edit/40/" title="Bewerk deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/pencil.png" alt="Pencil Icon" /></a>
  297.                                             <a href="/beheer/menu/edit/40/" title="Bewerk deze menu knop">Bewerk</a>
  298.                                         </div>
  299.  
  300.                                                                     <!-- Bewerk Inhoud-->
  301.                                         <div style="width: 120px; float: left; padding: 0 8px;">
  302.                                                                                 <a href="/beheer/module/edit/3/" title="Bewerk inhoud"><img style="vertical-align: bottom;" src="/icons/fugues/icons/document--pencil.png" alt="Pencil Icon" /></a>
  303.                                                 <a href="/beheer/module/edit/3/" title="Bewerk inhoud">Bewerk inhoud</a>
  304.  
  305.                                                                             </div>
  306.  
  307.                                         <!-- Rechten -->
  308.                                         <div style="width: 80px; float: left; padding: 0 8px;">
  309.                                             <a href="/beheer/module/permissions/3/" title="Stel de toegangs opties in voor deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/key.png" alt="Key Icon" /></a>
  310.                                             <a href="/beheer/module/permissions/3/" title="Stel de toegangs opties in voor deze menu knop">Toegang</a>
  311.                                         </div>
  312.  
  313.                                         <!-- Menu knop toevoegen -->
  314.  
  315.                                         <div style="width: 95px; float: left; padding: 0 8px;">
  316.                                                                                 <a href="/beheer/menu/new/?parent=40" title="Voeg een knop toe onder deze knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/plus-circle.png" alt="A plus icon" /></a>
  317.                                                 <a href="/beheer/menu/new/?parent=40" title="Voeg een knop toe onder deze knop">Toevoegen</a>
  318.                                                                             </div>
  319.  
  320.                                         <!-- Verwijderen -->
  321.                                         <div style="float: left; padding: 0 8px;">
  322.                                             <a href="/beheer/menu/delete/40/" title="Verwijder deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/cross.png" alt="Delete Icon" /></a>
  323.                                             <a href="/beheer/menu/delete/40/" title="Verwijder deze menu knop">Verwijder</a>
  324.  
  325.                                         </div>
  326.                                     </div>
  327.                                 </div>
  328.                             </li>
  329.                         </ul>
  330.                     </li>
  331.                     <li id="item_18">
  332.                         <div style="width: 100%; overflow: hidden; height: 20px; border-bottom: 1px solid #CDCDCD; padding: 5px 0;">
  333.                             <!--<div style="float: left; width: 565px; margin-top: 3px; margin-left: 10px;">-->
  334.  
  335.                             <div style="float: left; margin-top: 3px; margin-left: 10px;">
  336.                                 <img src="/icons/fugues/icons/arrow-resize-090.png" class="handle" alt="Sleep icon" title="Hiermee kunt u door te slepen de volgorde van de menu knoppen wijzigen." style="vertical-align: middle; cursor: pointer"/>
  337.  
  338.                                 Company&nbsp;                        </div>
  339.                             <div style="float: right;">
  340.                                 <!-- Bewerk -->
  341.                                 <div style="width: 75px; float: left; padding: 0 8px;">
  342.                                     <a href="/beheer/menu/edit/18/" title="Bewerk deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/pencil.png" alt="Pencil Icon" /></a>
  343.  
  344.                                     <a href="/beheer/menu/edit/18/" title="Bewerk deze menu knop">Bewerk</a>
  345.                                 </div>
  346.  
  347.                                                             <!-- Bewerk Inhoud-->
  348.                                 <div style="width: 120px; float: left; padding: 0 8px;">
  349.                                                                         <a href="/beheer/include/edit/21/" title="Bewerk inhoud"><img style="vertical-align: bottom;" src="/icons/fugues/icons/document--pencil.png" alt="Pencil Icon" /></a>
  350.                                         <a href="/beheer/include/edit/21/" title="Bewerk inhoud">Bewerk inhoud</a>
  351.                                                                     </div>
  352.  
  353.                                 <!-- Rechten -->
  354.                                 <div style="width: 80px; float: left; padding: 0 8px;">
  355.                                     <a href="/beheer/include/permissions/21/" title="Stel de toegangs opties in voor deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/key.png" alt="Key Icon" /></a>
  356.                                     <a href="/beheer/include/permissions/21/" title="Stel de toegangs opties in voor deze menu knop">Toegang</a>
  357.                                 </div>
  358.  
  359.                                 <!-- Menu knop toevoegen -->
  360.                                 <div style="width: 95px; float: left; padding: 0 8px;">
  361.  
  362.                                                                         <a href="/beheer/menu/new/?parent=18" title="Voeg een knop toe onder deze knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/plus-circle.png" alt="A plus icon" /></a>
  363.                                         <a href="/beheer/menu/new/?parent=18" title="Voeg een knop toe onder deze knop">Toevoegen</a>
  364.                                                                     </div>
  365.  
  366.                                 <!-- Verwijderen -->
  367.                                 <div style="float: left; padding: 0 8px;">
  368.                                     <a href="/beheer/menu/delete/18/" title="Verwijder deze menu knop"><img style="vertical-align: bottom;" src="/icons/fugues/icons/cross.png" alt="Delete Icon" /></a>
  369.                                     <a href="/beheer/menu/delete/18/" title="Verwijder deze menu knop">Verwijder</a>
  370.                                 </div>
  371.                             </div>
  372.                         </div>
  373.                     </li>
  374.                 </ul>
  375.             </div>
  376.         </div>
  377.     </body>
  378. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement