Wiki Modules
module name | usage |
wiki_last_comments | Shows the name of the commented pages, the beginning of comment and in tooltip the commenter and comment date. |
comm_received_objects | A summary of objects received in your site from other sites (including Wiki pages) |
last_modif_pages | Shows the name of the latest changed Wiki pages. Extremely useful to review modifications |
quick_edit | Allows to edit or create a Wiki page by simply entering its name |
random_pages | Shows random pages at each pageload |
search_wiki_page | Searches for Wiki pages matching (can be partially) the name entered |
top_pages | Most visited Wiki pages |
user_pages | Shows the pages edited (or created) by the module viewer |
Wiki Plugins
To learn about wiki plugins, go to Wiki Plugin
List Pages
tiki-listpages.php
The setting in admin->wiki->wiki->list pages.
The perm is tiki_p_view
find
The find option filters on the pagename.
If you enter abc, it will search for the pages that have a name containing abc (for instance, the pages abcde, abc, wabc will be returned, but the page abxc will not)
If you enter 'abc efg' or 'abc, efg'(string containing different word), it will search for the pages with a name containing abc or efg or both (for instance 'abcee', 'xxabc zz yyefg'). If you want only the pages containing 'abc efg', you have to match exact match option.
It is possible to use wildcards in the find string:
- % to match an arbitrary number of characters (including zero characters)
- _ to match any single character
To match any special character precede it with \
Examples:
ab%c will return adbc, aeebcdd
a\%b will return a%bccc but not acb