56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?= $this->ActiveLink->link('Catalogs', [
 | |
|     'plugin' => 'CakeProducts',
 | |
|     'controller' => 'ProductCatalogs',
 | |
|     'action' => 'index',
 | |
| ], [
 | |
|     'class' => 'submenu-link',
 | |
|     'target' => [
 | |
|         'plugin' => 'CakeProducts',
 | |
|         'controller' => 'ProductCatalogs',
 | |
|     ],
 | |
| ]); ?>
 | |
| <?= $this->ActiveLink->link('Products', [
 | |
|     'plugin' => 'CakeProducts',
 | |
|     'controller' => 'Products',
 | |
|     'action' => 'index',
 | |
| ], [
 | |
|     'class' => 'submenu-link',
 | |
|     'target' => [
 | |
|         'plugin' => 'CakeProducts',
 | |
|         'controller' => 'Products',
 | |
|     ],
 | |
| ]); ?>
 | |
| <?= $this->ActiveLink->link('Categories', [
 | |
|     'plugin' => 'CakeProducts',
 | |
|     'controller' => 'ProductCategories',
 | |
|     'action' => 'index',
 | |
| ], [
 | |
|     'class' => 'submenu-link',
 | |
|     'target' => [
 | |
|         'plugin' => 'CakeProducts',
 | |
|         'controller' => 'ProductCategories',
 | |
|     ],
 | |
| ]); ?>
 | |
| <?= $this->ActiveLink->link('Attributes', [
 | |
|     'plugin' => 'CakeProducts',
 | |
|     'controller' => 'ProductCategoryAttributes',
 | |
|     'action' => 'index',
 | |
| ], [
 | |
|     'class' => 'submenu-link',
 | |
|     'target' => [
 | |
|         'plugin' => 'CakeProducts',
 | |
|         'controller' => 'ProductCategoryAttributes',
 | |
|     ],
 | |
| ]); ?>
 | |
| <?= $this->ActiveLink->link('External Catalogs', [
 | |
|     'plugin' => 'CakeProducts',
 | |
|     'controller' => 'ExternalProductCatalogs',
 | |
|     'action' => 'index',
 | |
| ], [
 | |
|     'class' => 'submenu-link',
 | |
|     'target' => [
 | |
|         'plugin' => 'CakeProducts',
 | |
|         'controller' => 'ExternalProductCatalogs',
 | |
|     ],
 | |
| ]); ?>
 |