New Page Dialog Plugin ====================== A DokuWiki plugin which helps people to create new pages. It focuses on the way people are used to storing files and aims to resemble a regular "Save As" dialog with "Add Folder" functionality. All documentation for this plugin can be found at http://www.dokuwiki.org/plugin:npd. If you install this plugin manually, make sure it is installed in `lib/plugins/npd/` - if the folder is called different it will not work! Please refer to http://www.dokuwiki.org/plugins for additional info on how to install plugins in DokuWiki. This plugin is adopted from the original New Page Dialog plugin by Pierre Spring at https://www.dokuwiki.org/plugin:new_page_dialog. Add Button to Template ---------------------- This plugin requires the modification of the template (Often `main.php`). Decide where you want to insert the *Create New Page* button in your template and insert the following code: ```php if (!plugin_isdisabled('npd') && ($npd =& plugin_load('helper', 'npd'))) { $npd->html_new_page_button(); } ``` Most likely you want to do that in the `/lib/tpl/default/main.php` inside the `
` as follows: ```html
html_new_page_button(); ?>  
``` Note that the button will only be shown if the browser is JavaScript enabled. Exception: The template DokuBook has New Page Dialog already implemented. (Configure to type `link`.) ---- Copyright (C) 2014 christian studer This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. See the COPYING file in your DokuWiki folder for details