[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 #?ini charset="iso-8859-1"? 2 # eZ publish configuration file. 3 # 4 # NOTE: It is not recommended to edit this files directly, instead 5 # a file in siteaccess should be created for setting the 6 # values that is required for your site. Create 7 # a file called settings/siteaccess/mysite/menu.ini.append.php. 8 9 [MenuSettings] 10 AvailableMenuArray[] 11 AvailableMenuArray[]=TopOnly 12 AvailableMenuArray[]=LeftOnly 13 AvailableMenuArray[]=DoubleTop 14 AvailableMenuArray[]=LeftTop 15 16 [SelectedMenu] 17 CurrentMenu=TopOnly 18 TopMenu=flat_top 19 LeftMenu= 20 21 [TopOnly] 22 TitleText=Only top menu 23 MenuThumbnail=menu/top_only.jpg 24 TopMenu=flat_top 25 LeftMenu= 26 27 [LeftOnly] 28 TitleText=Left menu 29 MenuThumbnail=menu/left_only.jpg 30 TopMenu= 31 LeftMenu=flat_left 32 33 [DoubleTop] 34 TitleText=Double top menu 35 MenuThumbnail=menu/double_top.jpg 36 TopMenu=double_top 37 LeftMenu= 38 39 [LeftTop] 40 TitleText=Left and top 41 MenuThumbnail=menu/left_top.jpg 42 TopMenu=flat_top 43 LeftMenu=sub_left 44 45 46 [MenuContentSettings] 47 # This list contains the identifiers of the classse 48 # that are allowed to be shown in top menues 49 TopIdentifierList[] 50 TopIdentifierList[]=folder 51 TopIdentifierList[]=feedback_form 52 TopIdentifierList[]=gallery 53 TopIdentifierList[]=forum 54 55 # This list contains the identifiers of the classse 56 # that are allowed to be shown in left menues 57 LeftIdentifierList[] 58 LeftIdentifierList[]=folder 59 LeftIdentifierList[]=feedback_form 60 LeftIdentifierList[]=gallery 61 LeftIdentifierList[]=forum 62 63 # A list of the current navigation parts and their names 64 # Each entry consists of the identifier as key and the name 65 # as value. 66 # Note: If you wish to have the name translatable you will 67 # need to create a dummy PHP file with the following in it 68 # ezi18n( 'kernel/navigationpart', 'Custom navigation', 'Navigation part' ); 69 # This will cause the ezlupdate to include it in the .ts file. 70 [NavigationPart] 71 Part[ezcontentnavigationpart]=Content structure 72 Part[ezmedianavigationpart]=Media library 73 Part[ezusernavigationpart]=User accounts 74 Part[ezshopnavigationpart]=Webshop 75 Part[ezvisualnavigationpart]=Design 76 Part[ezsetupnavigationpart]=Setup 77 Part[ezmynavigationpart]=My account 78 79 # Example of a custom navigation part 80 # See TopMenuAdminMenu for how you can combine this with a 81 # new top menu 82 # Part[ezcustomnavigationpart]=Custom navigation 83 84 85 [TopAdminMenu] 86 # This list contains menuitems of the top menu in admin interface 87 Tabs[] 88 Tabs[]=content 89 Tabs[]=media 90 Tabs[]=users 91 Tabs[]=shop 92 Tabs[]=design 93 Tabs[]=setup 94 Tabs[]=my_account 95 96 # Example of adding a custom topmenu entry 97 # See the commented Topmenu_custom entry at the bottom 98 # Tabs[]=custom 99 100 # Here are the settings which controls behavour of each 101 # menuitem in top admin menu. 102 # URL['ui_context'] - which view item points to in different contextes. 103 # NavigationPartIdentifier - Navigation part identifier of the menu item. 104 # Name - name which is shown on the menu item, if it is not set the default value 105 # is used. Note!!! When you use the not default value the text translation 106 # of a menu item is done. 107 # Tooltip - tooltip which is shown for the menu item, if it is not set the default value 108 # is used. Note!!! When you use the not default value the text translation 109 # of a menu item is done. 110 # Enabled[ui_context] - sets if menuitem is clickable in current ui_context. 111 # Shown[ui_context] - sets if menuitem is clickable in current ui_context 112 [Topmenu_content] 113 URL[] 114 URL[default]=content/view/full/2 115 URL[browse]=content/browse/2 116 NavigationPartIdentifier=ezcontentnavigationpart 117 #Name=Content structure 118 #Tooltip=Manage the main content structure of the site. 119 Enabled[] 120 Enabled[default]=true 121 Enabled[browse]=true 122 Enabled[edit]=false 123 Shown[] 124 Shown[default]=true 125 Shown[navigation]=true 126 Shown[browse]=true 127 128 [Topmenu_media] 129 NavigationPartIdentifier=ezmedianavigationpart 130 #Name=Media library 131 #Tooltip=Manage images, files, documents, etc. 132 URL[] 133 URL[default]=content/view/full/43 134 URL[browse]=content/browse/43 135 Enabled[] 136 Enabled[default]=true 137 Enabled[browse]=true 138 Enabled[edit]=false 139 Shown[] 140 Shown[default]=true 141 Shown[navigation]=true 142 Shown[browse]=true 143 144 [Topmenu_users] 145 NavigationPartIdentifier=ezusernavigationpart 146 #Name=User accounts 147 #Tooltip=Manage users, user groups and permission settings. 148 URL[] 149 URL[default]=content/view/full/5 150 URL[browse]=content/browse/5 151 Enabled[] 152 Enabled[default]=true 153 Enabled[browse]=true 154 Enabled[edit]=false 155 Shown[] 156 Shown[default]=true 157 Shown[navigation]=true 158 Shown[browse]=true 159 160 [Topmenu_shop] 161 NavigationPartIdentifier=ezshopnavigationpart 162 #Name=Webshop 163 #Tooltip=Manage customers, orders, discounts and VAT types; view sales statistics. 164 URL[] 165 URL[default]=shop/orderlist 166 Enabled[] 167 Enabled[default]=true 168 Enabled[browse]=false 169 Enabled[edit]=false 170 Shown[] 171 Shown[navigation]=true 172 Shown[default]=false 173 Shown[browse]=true 174 175 [Topmenu_design] 176 NavigationPartIdentifier=ezvisualnavigationpart 177 #Name=Design 178 #Tooltip=Manage templates, menus, toolbars and other things related to appearence. 179 URL[] 180 URL[default]=visual/menuconfig 181 Enabled[] 182 Enabled[default]=true 183 Enabled[browse]=false 184 Enabled[edit]=false 185 Shown[] 186 Shown[navigation]=true 187 Shown[default]=true 188 Shown[browse]=true 189 190 [Topmenu_setup] 191 NavigationPartIdentifier=ezsetupnavigationpart 192 #Name=Setup 193 #Tooltip=Configure settings and manage advanced functionality. 194 URL[] 195 URL[default]=setup/cache 196 Enabled[] 197 Enabled[default]=true 198 Enabled[browse]=false 199 Enabled[edit]=false 200 Shown[] 201 Shown[default]=true 202 Shown[navigation]=true 203 Shown[browse]=true 204 205 [Topmenu_my_account] 206 NavigationPartIdentifier=ezmynavigationpart 207 #Name=My account 208 #Tooltip=Manage items and settings that belong to your account. 209 URL[] 210 URL[default]=content/draft 211 Enabled[] 212 Enabled[default]=true 213 Enabled[browse]=false 214 Enabled[edit]=false 215 Shown[] 216 Shown[default]=true 217 Shown[navigation]=true 218 Shown[browse]=true 219 220 # Definition of the custom topmenu 221 # Note: This is just an example 222 # 223 # [Topmenu_custom] 224 # # Uses a custom navigation part (See list NavigationPart group above) 225 # NavigationPartIdentifier=ezcustomnavigationpart 226 # Name=Custom 227 # Tooltip=A custom tab for eZ publish 228 # URL[] 229 # URL[default]=custom/list 230 # Enabled[] 231 # Enabled[default]=true 232 # Enabled[browse]=false 233 # Enabled[edit]=false 234 # Shown[] 235 # Shown[default]=true 236 # Shown[edit]=true 237 # Shown[navigation]=true 238 # # We don't show it in browse mode 239 # Shown[browse]=false 240 241 242 # Controls the display of the left menu for the administration interface. 243 # Width setting can be used to setup the widths (the measure is em) for the 244 # different menu sizes (small/medium/large). 245 [LeftMenuSettings] 246 MenuWidth[] 247 MenuWidth[small]=13 248 MenuWidth[medium]=19 249 MenuWidth[large]=25
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |