Yehuda |
04-10-2005 10:40 AM |
here is a portion. Please ell me if you see anything wrong.
Quote:
}
//=== GEEK AUTOLINK step 4.2 ===
$printhr = true;
construct_nav_option($vbphrase['GAL_display'], 'GAL_admin.php');
construct_nav_option($vbphrase['GAL_add_new'], 'GAL_admin.php?do=add');
construct_nav_option($vbphrase['GAL_settings'], 'GAL_admin.php?do=rebuild');
construct_nav_group($vbphrase['GAL_CP']);
//=== /GEEK AUTOLINK ===
// *************************************************
$printhr = false;
if (can_administer('canadminstyles'))
{
$printhr = true;
construct_nav_option($vbphrase['style_manager'], 'template.php?do=modify', '<br />');
construct_nav_option($vbphrase['search_in_templates'], 'template.php?do=search', '<br />');
construct_nav_option($vbphrase['replacement_variable_manager'], 'replacement.php?do=modify', '<br />');
construct_nav_option($vbphrase['download_upload_styles'], 'template.php?do=files', '<br />');
construct_nav_option($vbphrase['find_updated_templates'], 'template.php?do=findupdates', '<br />');
construct_nav_group("$vbphrase[styles] & $vbphrase[templates]", '<hr />');
}
// ***
if (can_administer('canadminlanguages'))
{
$printhr = true;
construct_nav_option($vbphrase['language_manager'], 'language.php?do=modify', '<br />');
construct_nav_option($vbphrase['phrase_manager'], 'phrase.php?do=modify&phrasetypeid=1', '<br />');
construct_nav_option($vbphrase['search_in_phrases'], 'phrase.php?do=search', '<br />');
construct_nav_option($vbphrase['download_upload_languages'], 'language.php?do=files');
construct_nav_group("$vbphrase[languages] & $vbphrase[phrases]", '<hr />');
}
// ***
if (can_administer('canadminfaq'))
{
$printhr = true;
construct_nav_option($vbphrase['faq_manager'], 'faq.php?null=0', '|');
construct_nav_option($vbphrase['add_new_faq_item'], 'faq.php?do=add');
construct_nav_group($vbphrase['faq']);
}
if ($printhr == true)
{
construct_nav_spacer();
}
// *************************************************
construct_nav_option($vbphrase['announcement_manager'], 'announcement.php?do=modify', '|');
construct_nav_option($vbphrase['add_new_announcement'], 'announcement.php?do=add');
construct_nav_group($vbphrase['announcements']);
// ***
if (can_administer('canadminforums'))
{
construct_nav_option($vbphrase['forum_manager'], 'forum.php?do=modify', '|');
construct_nav_option($vbphrase['add_new_forum'], 'forum.php?do=add', '|');
construct_nav_option($vbphrase['forum_permissions'], 'forumpermission.php?do=modify', '<br />');
construct_nav_option($vbphrase['show_all_moderators'], 'moderator.php?do=showlist', '<br />');
construct_nav_option($vbphrase['view_permissions'], 'resources.php');
construct_nav_group("$vbphrase[forums] & $vbphrase[moderators]");
}
construct_nav_spacer();
// *************************************************
|
|