Name | Description |
---|---|
Color Plugin | Write colored text in DokuWiki |
EditTable | Visual table editing and inserting interface |
nspages | Automatically generate a custom list of pages in your wiki or namespace |
Wrap | Probably the most useful formatting plugin – easily add columns, notes, divs, etc. |
DW2PDF | Export wiki pages as PDFs |
Copy Code | Easely copy code from code blocks |
Note | Add color coded notes |
Move | Move pages and automatically adjusts all links and media references |
For instance, if you want to disable for guests Recent changes, Media Manager and Sitemap, in the file inc/confutils.php edit function actionOK():
Search:
return !in_array($action,$disabled);
Replace to:
if(!empty($_SERVER['REMOTE_USER'])) return !in_array($action,$disabled); if(in_array($action, Array('recent', 'media', 'index'))) //array of actions to disable return false; else return !in_array($action,$disabled);