actuations.php 644 Bytes
Newer Older
nextime's avatar
nextime committed
1 2 3 4 5 6 7 8 9 10 11 12 13
<? @include_once("../includes/common.php"); ?>
   <div class="left-drawer">
      <div id="websectionlist" class="panel drawer-container scrollable">
         <a href="<?=$BASEGUIPATH?>" class="btn btn-block btn-default">home</a>
<?
   $links=array();
   foreach(getWebSections(array('home'), array(), 'devsection') as $ws)
   {
      $links[$tr->Get($ws)]=$ws;
   }
   ksort($links, SORT_NATURAL | SORT_FLAG_CASE);
   foreach($links as $k => $v)
   {
14
      if(!startsWith($v, '_')) {
nextime's avatar
nextime committed
15 16 17
      ?>
         <a href="<?=$BASEGUIPATH."/actuations/".$v?>" class="btn btn-block btn-default"><?=$k?></a>
      <?
18
      }
nextime's avatar
nextime committed
19 20 21 22
   }
?>
      </div>
   </div>