Table of contents
- Customizing Menus
- Creating a Custom Menu
- Configuring a Custom Menu
- Allow viewing options/sections only under some conditions
- Include menu in a new user module or in templates
- Multilingual menu
- CSS (Suckerfish) Menus
- External Links in Menus
- Links in iframe
- Perms
- Change the folder icons of a tiki menu
- Add icons to each option of a menu
- See also
- Alias
Customizing Menus
Some more screenshots are needed
In Tiki you can create a custom menu, or a menu from a wiki page, or a menu from a structure. Menus and many other things can be placed into custom "user" modules using the Smarty
{menu ...} syntax. The modules can then be stacked in the left and right columns or the syntax can be placed directly in the various custom code text areas of the Look & Feel admin panel (in Tiki 7 you'll be able to assign modules on top and bottom too). Menus can be plain, collapsible, you can create a menu where sections of a menu item can be expanded or collapsed within a parent section (folder) or they can be displayed as dynamic menus with some fancy look and effects using CSS and jQuery.TIP:
For an easy, community editable menu use Module menupage, which creates a menu from a designated wiki page.
For an easy, community editable menu use Module menupage, which creates a menu from a designated wiki page.
Creating a Custom Menu
Goto Admin > Menus (or type URL will end with: .../tiki-admin_menus.php).
There are three different types of menus that can be created:
- Fixed (f): The menu will be static; all the options will be displayed in the menu module.
- Dynamic collapsed (d): The menu is dynamic; only the sections will be displayed in the menu module and there will be +/- links or a folder icon to open/close sections. The application menu in tiki is an example of this class of menu.
- Dynamic expanded (e): The same as before but all the sections are expanded by default and the user can close with (-) or the folder icon of the section that he wants to close.
insert screenshot here
Configuring a Custom Menu
Once created, click the configuration button on this new menu's row, which will take you to /tiki-admin_menu_options.php?menuId=nTo create a menu item, fill in the edit menu options form: at least Name, URL (relative or absolute), Type = "option" and Position which is a number to set the menu item order. Save and look at the Preview of the menu.
In Tiki >= 2.0, you can specify the link to a wiki page in a menu option with the syntax ((pageName)). The advantage is to have a rename of the option when the page name changes, and to be able to have a SEFURL link if the feature SEFURLs is checked. The SEFURL will become http://mysite.com/Home instead of http://mysite.com/tiki-index.php?page=Home.
To create a section (i.e. a folder) that can be opened or collapsed, fill in the edit menu options form with at least Name, URL, Type = "section" and Position.
NOTE: Do not put anything in Sections unless you know the tiki specific feature references e.g. feature_wiki or feature_blog_rankings. These can be auto-filled using Some useful URLs pull-downs, or look at the Tips below to know how to guess the section name of the feature you are interested in.
- A section is an option that can fold the following options. The options dependant on a section are defined as the list of consecutive options with type 'option'. The options of a section stop when the next option is a section, a sorted section, or a separator.
- A sorted section sorts all its dependent options when displayed.
- A separator does nothing - except to stop a section (useful if you want to do a section followed by an option)
Example
- option1
- section1
- option2
- option3
- option4
- section2
- option5
| option1 | option | ||
| section1 | section | ||
| option2 | option | ||
| option3 | option | ||
| separator | |||
| option4 | option | ||
| section2 | section | ||
| option5 | option | ||
In Tiki > 1.9.8, more levels have been introduced
Example:
- option1
- section1
- option2
- section3
- option3
- option4
- section4
- option5
- section5
- option6
| option1 | option | ||
| section1 | section level 0 | ||
| option2 | option | ||
| section3 | section level 1 | ||
| option3 | option | ||
| option4 | option | ||
| section4 | section level 2 | ||
| option5 | option | ||
| section5 | section level1 | ||
| separator | |||
| separator | |||
| option6 | option | ||
Tip: Leave intentional gaps when numbering positional value for options. (Ex: 1,3,5,7,9). This will make future additions easier.
Allow viewing options/sections only under some conditions
Allow only to some specific groups
You can restrict the view of some options and sections in the menu, so that only specific groups can view them. For instance, you could add a "User Preferences" option in position 100 to your customized menu that is seen by users only when they log in (registered group).To do this, you would add:
| Name: | User Preferences | ||
| URL: | tiki-user_preferences.php | ||
| Sections: | |||
| Permissions: | |||
| Group: | Registered | ||
| Type: | option | Position: | 100 |
You can specify a list of groups (separated by comma in Tiki =< 1.9.x, multiple select since Tiki 2.x). In this case, it means that the user needs to be in each group to see the option.
If you want a list of groups to see the option, = a user to be only in one of the groups to see the option, you have to insert has many options as groups. Each option must have the same parameters (same position, ...) except for the group.
The trick is, if you don't select any Groups, everyone can see the menu option. If you want to exclude a group, select all the other groups (but not the group you want to exclude).
Similarly, you can inadvertently exclude a logged-in group by selecting too many groups. You don't need to select all of your Admin-type groups (they can usually see everything anyway). Just select the one logged-in group that you want to able to see the menu item. (Yes, this is all very weird.)
Allow only if feature X is enabled
Imagine you want to add the option "Users Map" in position 110, to anonymous or registered groups, only when the feature Google Maps (gmap) is enabled in your site. You can do that with:| Name: | Users map | ||
| URL: | tiki-gmap_usermap.php | ||
| Sections: | feature_gmap | ||
| Permissions: | |||
| Group: | |||
| Type: | option | Position: | 110 |
Allow only if feature X enabled and if user in a group with given permission
You could also restrict the menu option to be seen when the feature X is enabled, but also only when the user belongs to a group which has a specific permission.For instance, you could add an option "Upload image" in position 120 which is seen only when the feature image galleries (feature_galleries) is enabled AND only by users in groups which have the permission to upload images (tiki_p_upload_images).
To achieve this behavior, you have to add something like:
| Name: | Upload image | ||
| URL: | tiki-upload_image.php | ||
| Sections: | feature_galleries | ||
| Permissions: | tiki_p_upload_images | ||
| Group: | |||
| Type: | option | Position: | 120 |
Tips
- You could add to a menu entry any combination of settings for sections, permissions or groups.
- If you need a same option with different perms or group, duplicate the option with the same position value.
- To know the section names in order to allow only some new options when the feature is enabled, you can disable/enable them under "Admin home > Features" (tiki-admin.php?page=features), and you will see its name reported on top of the page when it's reloaded after you saved your changes. Then, you can enable/disable them again to its original state, if you don't want to change this setting.
- To know the permission names, go to Admin > Groups > press on the key icon (
) next to a group) (tiki-assignpermission.php?group=Registered, for instance)
Include menu in a new user module or in templates
Once the menu has all or most of the options go to "Admin Modules" page (/tiki-admin_modules.php), under " Create new user module" at the bottom, find your menu title in the pull-down "Menus" on the right, click use menu and "{menu id=n}" (where n = your menu ID) will appear in the "Create new user module" data box. Add a title (what will users will see) and a name (what admin sees) and click create/edit.Now you have created a new user module for the custom menu.
Moreover, it is possible to create dynamic pop-up menus by putting {phplayers id=n} in a TPL file. For older versions of Tiki, you might need to copy the layersmenu CSS entries out of damian.css into the css of your choice (or copy them from a later version).
On Admin Modules you can assign the module using the "Assign new module" form.
Multilingual menu
CSS (Suckerfish) Menus
In Tiki 2 and newer, it is possible to use a suckerfish menu. This menu can be either vertical (in a module), or horizontal (in a template or in Site Identity custom code or, as of Tiki 3.0, as the topbar menu by just indicating the menu id number. Even nicer, jquery Superfish effects can be applied to CSS menus in Tiki 3.To summarize: a menu created in Admin Menus can be displayed in one of three forms: a normal tiki menu (like the default menu in the side column), a PHP Layers menu, and a suckerfish (CSS) menu. In any form it can be integrated in tiki either directly in a module, in a template file {menu id=1} or in Admin Look and Feel (custom code in Tiki 2, or topbar menu selection in Tiki 3.0). To have a suckerfish menu used, in a module (via admin) or a template (via file editing) add the parameter css=y to the smarty tag {menu}.
How to Set Up a CSS Menu (in progess)
- Ensure that CSS menus are enabled in admin>features.
- Create a menu in the normal way at admin > menus.
- Note the ID number of the menu you have created.
- Edit the module (within tiki) or .tpl file (via ftp) and include (along with whatever html is required) the following syntax: {menu id=1 css=y}.
- In Tiki 3.0, the module containing the CSS menu needs this parameter: overflow=y. This allows the submenu items to display outside the module's borders.
Additional Parameters
| type | horiz or vert op open | open will close no submenus | |
| sectionLevel | numeric | all the submenus beginning at this level will be displayed if the url matches one of the option of this level or above or below | |
| toLevel | numeric | do not display option higher than this level | |
| subMenu | numeric | menu option ID root. Only the submenu of this option will be displayed | |
Contextual menu example
Imagine this menu (id=101)- flower
- rose
- monaco
- daisy
- rose
- tree
- tree
- oak
flower | tree
rose|daisy
will display when you are tree, oak
flower } tree
tree|oak
Three steps to a contextual menu
|
This example works fine with Tiki 3.5 → when I will find out major differences in higher Versions, I will add this here lateron. Please mind that there have been changes in the templates from Tiki4 on.
Update: works fine in 4.x, 5.x and 6.x .
Please mind, that this custom-contextual-menu will only show items, when you are "on a page" that is linked from the menu.
If you move forward on a more complex website, then the left submenu will show up "empty". That makes no sense and I am on to get more problems solved related to the contextual menu.
Example:
You link to a "startpage" of a Wikistructure, but the other pages of the structure are not linked "in" the menu ...
... clicking on the menuitem linking to that page will let appear the appropriate (not emty) contextual menu ...
... but if you "move" forward in the wikistructure, the contextual menu will become empty.
If you move forward on a more complex website, then the left submenu will show up "empty". That makes no sense and I am on to get more problems solved related to the contextual menu.
Example:
You link to a "startpage" of a Wikistructure, but the other pages of the structure are not linked "in" the menu ...
... clicking on the menuitem linking to that page will let appear the appropriate (not emty) contextual menu ...
... but if you "move" forward in the wikistructure, the contextual menu will become empty.
Required CSS Classes
As of Tiki 3.0, suckerfish menus are supported in CSS by default, and no additional CSS styles need to be added. The following information applies to Tiki 2. NOTES
For a CSS menu to work in the side column, these changes have to be made to the theme's stylesheet, after the .box selector in the file:
The number is the id number of the menu, so this will have to be changed if the menu has a different id number. In the future release, there will probably be a general CSS solution, but in the meantime (May 2008), this previous hack should do the job.
The first part is to enable the menu items to be visible outside of the module; the fourth item is probably necessary to bring the menu (top-level items) fully into view in the module. They are probably too far to the left initially. You might have to adjust the "1em" to another figure (whole numbers or decimal numbers like 1.4em are OK).
For a CSS menu to work in the side column, these changes have to be made to the theme's stylesheet, after the .box selector in the file:
/* Needs to be set for CSS menu in col2 to work */
.box-menu_css_v_43,
.box-menu_css_v_43 .box-data,
.box-menu_css_v_43 ul {overflow: visible !important}
.box-menu_css_v_43 {padding-left: 1em}The number is the id number of the menu, so this will have to be changed if the menu has a different id number. In the future release, there will probably be a general CSS solution, but in the meantime (May 2008), this previous hack should do the job.
The first part is to enable the menu items to be visible outside of the module; the fourth item is probably necessary to bring the menu (top-level items) fully into view in the module. They are probably too far to the left initially. You might have to adjust the "1em" to another figure (whole numbers or decimal numbers like 1.4em are OK).
External Links in Menus
If you want to let external links be opened in a new Tab or window, you need a target=_blank.Please mind a difference in the notation regarded to "normal" HTML (the starting and ending quotes are intended to be missing):
In the menu you have to type:
target=_blank
http://foo.bar" target="_blank.
And it will only work, if you enable the following in the admin panel "general settings -> navigation":
allow-HTML
Allow HTML in link text and do not escape the url in menu items (Please note: this might be insecure if you allow more people to edit menus)
Alternatively, you can try How to make menu items open in a new window
Links in iframe
Links to be opened inside an iframe in the main display area can be done this way ( Featured Links feature has to be enabled):Link opens in iframe
tiki-featured_link.php?type=f&url=http%3A%2F%2Fwww.siemens.com%2fAll special characters have to be replaced with the html encoding, e.g. / has to be replaced with %2f!
Perms
- tikiwiki< 1.10: you need to have tiki_p_admin to create/edit the menus
- tikiwiki>=1.10: to create a menu or delete one, you need tiki_p_edit_menu, to create/edit a menu option, you need tiki_p_edit_menu_option (of course, you have implicitly the 2 perms when you have tiki_p_admin)
Change the folder icons of a tiki menu
tikiwiki>=1.10There are 2 ways to change the folder icons
1) to change it as every other icons by overloading it at the templates level. You need to create 2 icons
- styles/my_style/pics/icons/folder.png
- styles/my_style/pics/icons/ofolder.png
For the change to take effect, you may have to clear Tiki's caches (at tiki-admin_system.php) and your browser cache, and/or log out of Tiki to clear session information.
Add icons to each option of a menu
tiki>=?You need to activate the general preference in admin->general->
Then for a specific menu, you must check in when creating/editing this menu the option 'Configure icons for menu entries'
Then for each option, you can give the name of the file containing the icon (the file will be fetched in the directory you specified in admin->general) or you can give the path of an icon relative to tikiroot.
See also
For more information about creating menus only for specific groups see: Menu HOWTOSuckerfish menus (css menus):
