<?php
/**
 * Generated: 2014-06-26 13:36:00
 * @author Rtn_Module_Tool
 */

class Forms_Module_Menu extends Eppe_Module_MenuAbstract implements Eppe_Module_MenuInterface {

	public function setNavigation() {
		
		$this->navigation = array(
			 array(
				'label' => __('Formularze'),
				'module' => 'Forms',
				'controller' => 'admin_index',
				'action' => 'index',
				'pages' => [
				    [
					'label' => __('Lista'),
					'module' => 'Forms',
					'controller' => 'admin_index',
					'action' => 'index',
					'visible' => true
				    ], [
					'label' => __('Zebrane dane'),
					'module' => 'Forms',
					'controller' => 'admin_history',
					'action' => 'index',
					'visible' => false,
					'pages' => [
					    [
						'label' => __('Podgląd'),
						'module' => 'Forms',
						'controller' => 'admin_history',
						'action' => 'show',
						'visible' => false
					    ]
					]
				    ], [
					'label' => __('Dodanie'),
					'module' => 'Forms',
					'controller' => 'admin_index',
					'action' => 'add',
					'visible' => false
				    ], [
					'label' => __('Edycja'),
					'module' => 'Forms',
					'controller' => 'admin_index',
					'action' => 'edit',
					'visible' => false,
					'pages' => [
					    [
						'label' => __('Pola'),
						'module' => 'Forms',
						'controller' => 'admin_index',
						'action' => 'fields',
						'visible' => false
					    ]
					]
				    ], [
					'label' => __('Pola'),
					'module' => 'Forms',
					'controller' => 'admin_fields',
					'action' => 'index',
					'pages' => [
						[
						'label' => __('Dodanie'),
						'module' => 'Forms',
						'controller' => 'admin_fields',
						'action' => 'add',
						'visible' => false
						], [
						'label' => __('Edycja'),
						'module' => 'Forms',
						'controller' => 'admin_fields',
						'action' => 'edit',
						'visible' => false
						]
					]
				    ]
				]
			    )
		);
	}

}
				