Update of /cvsroot/phpwebapp/top10/templates/menu
In directory sc8-pr-cvs1:/tmp/cvs-serv19815/templates/menu
Modified Files:
Tag: maisp
menu.php menu.html
Log Message:
Added modules 'users' and 'modify' that will be used by admin.
Index: menu.php
===================================================================
RCS file: /cvsroot/phpwebapp/top10/templates/menu/menu.php,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** menu.php 24 Sep 2003 14:01:36 -0000 1.2
--- menu.php 13 Jan 2004 14:34:01 -0000 1.2.2.1
***************
*** 40,43 ****
--- 40,45 ----
WebApp::addVars( array(
"about" => "menu-tab",
+ "users" => "menu-tab",
+ "modify" => "menu-tab",
"proj_list" => "menu-tab",
"proj_details" => "menu-tab",
Index: menu.html
===================================================================
RCS file: /cvsroot/phpwebapp/top10/templates/menu/menu.html,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -C2 -d -r1.2 -r1.2.2.1
*** menu.html 24 Sep 2003 14:01:37 -0000 1.2
--- menu.html 13 Jan 2004 14:34:01 -0000 1.2.2.1
***************
*** 8,11 ****
--- 8,17 ----
<td class="{{preference_list}}"><a href="javascript:select_tab('preference_list')">Preference List</a></td>
<td width="3"></td>
+ <If condition="'{{ADMIN}}'=='true'">
+ <td class="{{users}}"><a href="javascript:select_tab('users')">Users</a></td>
+ <td width="3"></td>
+ <td class="{{modify}}"><a href="javascript:select_tab('modify')">Modify</a></td>
+ <td width="3"></td>
+ </If>
<td class="{{about}}"><a href="javascript:select_tab('about')">About Top10</a></td>
</tr>
|