コード例 #1
0
ファイル: leftnav.php プロジェクト: mehulsbhatt/volcano
<?php

if (empty($option)) {
    return;
}
$nav = array(array('href' => $option->product->link('options'), 'value' => 'Configure Options', 'class' => 'return-link'), array('href' => $option->link('edit'), 'value' => 'General'), array('href' => $option->link('fees'), 'value' => 'Fees'));
echo View_Helper::nav($nav);
コード例 #2
0
ファイル: pagenav.php プロジェクト: mehulsbhatt/volcano
<?php

if (empty($customer)) {
    return;
}
$nav = array(array('href' => $customer->link('paymentmethods/create'), 'value' => 'Add Payment Method', 'attributes' => array('class' => 'btn'), 'icon' => 'icon-plus'));
echo View_Helper::nav($nav, array('class' => 'nav-pills pull-right'));
コード例 #3
0
ファイル: topnav.php プロジェクト: mehulsbhatt/volcano
<?php

$topnav = array(array('href' => '/', 'value' => 'Dashboard', 'icon' => 'icon-home', 'aliases' => array('')), array('href' => 'customers', 'value' => 'Customers', 'icon' => 'icon-user', 'aliases' => array('customers/*')), array('href' => 'products', 'value' => 'Products', 'icon' => 'icon-barcode', 'aliases' => array('products/*')), array('href' => 'orders', 'value' => 'Orders', 'icon' => 'icon-list', 'aliases' => array('orders/*')), array('href' => 'statistics', 'value' => 'Statistics', 'icon' => 'icon-bar-chart', 'aliases' => array('statistics/*')), array('href' => 'settings', 'value' => 'Settings', 'icon' => 'icon-gear', 'aliases' => array('settings/*')));
echo View_Helper::nav($topnav);