| 301 | | <a class="if_menu_item<?php if ($this->_selected_menuitem == "index") { echo "_act"; } ?>" href="./index.php"><?php echo gettext("index"); ?></a> |
| 302 | | <a class="if_menu_item<?php if ($this->_selected_menuitem == "categories") { echo "_act"; } ?>" href="./index.php?action=show_cats"><?php echo gettext("Categories"); ?></a> |
| 303 | | <a class="if_menu_item<?php if ($this->_selected_menuitem == "dossiers") { echo "_act"; } ?>" href="./index.php?action=show_dossiers"><?php echo gettext("Dossiers"); ?></a> |
| 304 | | <a class="if_menu_item<?php if ($this->_selected_menuitem == "authors") { echo "_act"; } ?>" href="./index.php?action=show_authors"><?php echo gettext("Authors"); ?></a> |
| 305 | | <a class="if_menu_item<?php if ($this->_selected_menuitem == "users") { echo "_act"; } ?>" href="./index.php?action=show_users"><?php echo gettext("Users"); ?></a> |
| 306 | | <a class="if_menu_item<?php if ($this->_selected_menuitem == "posts") { echo "_act"; } ?>" href="./index.php?action=show_posts"><?php echo gettext("Posts"); ?></a> |
| 307 | | <a class="if_menu_item<?php if ($this->_selected_menuitem == "comments") { echo "_act"; } ?>" href="./index.php?action=show_comments"><?php echo gettext("Comments"); ?></a> |
| | 313 | <a class="if_menu_item<?php if ($this->_selected_menuitem == "index") { echo "_act"; } ?>" href="./index.php"><?php echo gettext("Main"); ?></a> |
| | 314 | <a class="if_menu_item<?php if ($this->_selected_menuitem == "manage") { echo "_act"; } ?>" href="./index.php?action=show_posts"><?php echo gettext("Manage"); ?></a> |
| | 315 | <a class="if_menu_item<?php if ($this->_selected_menuitem == "users") { echo "_act"; } ?>" href="./index.php?action=show_authors"><?php echo gettext("Users"); ?></a> |
| | 316 | <a class="if_menu_item<?php if ($this->_selected_menuitem == "settings") { echo "_act"; } ?>" href="./index.php?action=show_settings"><?php echo gettext("Settings"); ?></a> |
| | 319 | </div> |
| | 320 | <div id="if_submenu"> |
| | 321 | <?php |
| | 322 | switch ($this->_selected_menuitem) { |
| | 323 | case "manage" : |
| | 324 | ?> |
| | 325 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "posts") { echo "_act"; } ?>" href="./index.php?action=show_posts"><?php echo gettext("Posts"); ?></a> |
| | 326 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "dossiers") { echo "_act"; } ?>" href="./index.php?action=show_dossiers"><?php echo gettext("Dossiers"); ?></a> |
| | 327 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "categories") { echo "_act"; } ?>" href="./index.php?action=show_cats"><?php echo gettext("Categories"); ?></a> |
| | 328 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "comments") { echo "_act"; } ?>" href="./index.php?action=show_comments"><?php echo gettext("Comments"); ?></a> |
| | 329 | <?php |
| | 330 | break; |
| | 331 | case "users" : |
| | 332 | ?> |
| | 333 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "authors") { echo "_act"; } ?>" href="./index.php?action=show_authors"><?php echo gettext("Authors"); ?></a> |
| | 334 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "users") { echo "_act"; } ?>" href="./index.php?action=show_users"><?php echo gettext("Users"); ?></a> |
| | 335 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "my") { echo "_act"; } ?>" href="./index.php?action=edit_author&id=<?php echo $_SESSION["author_id"];?>"><?php echo gettext("Your profile"); ?></a> |
| | 336 | <?php |
| | 337 | break; |
| | 338 | case "settings" : |
| | 339 | ?> |
| | 340 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "settings") { echo "_act"; } ?>" href="./index.php?action=show_settings"><?php echo gettext("Settings"); ?></a> |
| | 341 | <a class="if_submenu_item<?php if ($this->_selected_submenuitem == "menuitems") { echo "_act"; } ?>" href="./index.php?action=show_menuitems"><?php echo gettext("Menuitems"); ?></a> |
| | 342 | <?php |
| | 343 | break; |
| | 344 | default: |
| | 345 | break; |
| | 346 | } |
| | 347 | ?> |