Created
June 15, 2014 16:40
-
-
Save sharikovvladislav/73be7eabfc0fb32cf1c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$breadcrumbs->add(new Breadcrumb("/clients/orders", "Заказы")); | |
$subaction = isset($_GET['subaction']) ? $_GET['subaction'] : null; | |
switch($subaction): | |
default: | |
$MAIN_OUTPUT .= "<h3>Стандартная страница раздела Клиенты -> Заказы</h3>"; | |
break; | |
case "add": | |
$breadcrumbs->add(new Breadcrumb("/client/orders/add", "Добавление")); | |
$MAIN_OUTPUT .= "<h3>Клиенты -> Заказы -> Добавление заказа</h3>"; | |
break; | |
endswitch; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment