CakeAccounting/templates/element/Layout/submenu.php

45 lines
1.1 KiB
PHP
Raw Normal View History

2025-08-09 21:07:39 +00:00
<?= $this->ActiveLink->link('Accounts', [
'plugin' => 'CakeAccounting',
'controller' => 'DeAccounts',
'action' => 'index',
],[
'class' => 'submenu-link',
'target' => [
'plugin' => 'CakeAccounting',
'controller' => 'DeAccounts',
],
]); ?>
<?= $this->ActiveLink->link('External Accounts', [
'plugin' => 'CakeAccounting',
'controller' => 'DeExternalAccounts',
'action' => 'index',
], [
'class' => 'submenu-link',
'target' => [
'plugin' => 'CakeAccounting',
'controller' => 'DeExternalAccounts',
],
]); ?>
<?= $this->ActiveLink->link('Journal Entries', [
'plugin' => 'CakeAccounting',
'controller' => 'DeJournalEntries',
'action' => 'index',
], [
'class' => 'submenu-link',
'target' => [
'plugin' => 'CakeAccounting',
'controller' => 'DeJournalEntries',
],
]); ?>
<?= $this->ActiveLink->link('JournalItems', [
'plugin' => 'CakeAccounting',
'controller' => 'DeJournalItems',
'action' => 'index',
], [
'class' => 'submenu-link',
'target' => [
'plugin' => 'CakeAccounting',
'controller' => 'DeJournalItems',
],
]); ?>