tbrehm
2012-04-23 d02193c14c33dd12edb14f000b1c4eb6b7c3f070
commit | author | age
911d45 1 <?php
T 2
3
4 // Menu
5
6 if($app->auth->is_admin()) {
7
8 $items = array();
9
10 $items[] = array( 'title'     => 'Resync',
11                   'target'     => 'content',
d02193 12                   'link'    => 'tools/resync.php');
911d45 13
T 14
d02193 15 $module['nav'][] = array(    'title'    => 'Sync Tools',
911d45 16                             'open'     => 1,
T 17                             'items'    => $items);
18
19 unset($items);
20 }
21
22 ?>