====== Admin Plugins ====== [[plugintype>2#extension__table|Admin Plugins]] are [[plugins]] that provide DokuWiki with extra functions accessible via the [[:admin_window|admin window]]. It is not necessary to create an admin component to enable plugin configuration, it is already included, see [[devel:configuration]]. Some examples: * The [[plugin:whyspam|whyspam]] plugin consist of a single admin component/file, allowing admins ([[config:superuser|superusers]] and [[config:manager|managers]]) to check why certain text were blocked as spam, interacting with DokuWiki's bundled stopword file. * [[plugin:data|Structured data]] plugin uses two separate admin components/files (requires a special [[devel:plugin_file_structure|plugin file structure]]), one to manage field aliases and another to do database maintenance. This plugin also have several [[devel:syntax_plugins|syntax components]] and shows how to use a [[devel:helper_plugins|helper]] plugin. ===== How to Write an Admin Plugin ===== An Admin Plugin //Example// needs: * class name ''admin_plugin_example'' * which extends [[xref>AdminPlugin]]((defined in ''lib/Extension/AdminPlugin.php'', before called ''DokuWiki_Admin_Plugin'' which is still available as alias)). * to be stored in a file ''lib/plugins/example/admin.php''. Moreover, a [[plugin_info|plugin.info.txt]] file is needed. For full details of plugins and their files and how to create more admin components refer to [[plugin file structure]]. ===Required methods=== Class needs to implement the following methods (Must override): ^Name ^Description ^ |[[xref>inc/Extension/AdminPlugin::handle|handle()]] |Called from [[xref>act_dispatch()]] in ''inc/action.php''. Should carry out any processing required by the plugin. | |[[xref>inc/Extension/AdminPlugin::html|html()]] |Called from [[xref>tpl_admin()]] in ''inc/template.php''. Render HTML output for the plugin. Most admin plugins displays a helpful text and a HTML form.| ===Optional methods=== (Override only if needed): ^ Name ^ Description ^ | [[xref>forAdminOnly()]] | Inherited method returns default ''true'', what means the plugin can only be accessed by wiki admins (who are indicated by [[config:superuser|superuser]] config option). This method only needs to be overridden, to let it return ''false'', if the plugin can be accessed by managers (who are indicated by [[config:manager|manager]] config option). | | [[xref>getMenuText()]] | Return the menu string to be displayed in the main admin menu. If you have followed the [[#Localization & configuration|localisation guidelines]] below you do not need to override this function, the text for the correct language will be provided from the plugin's ''%%$lang['menu']%%'' value found in the plugin localisation files. | | [[xref>getMenuSort()]] | Return a number which is used to determine the position in the admin menu on [[:admin window]]. | | [[xref>getTOC()]] | Use this function to create a table of contents for potentially long pages, see [[plugin:config|config plugin]] for an example. Should return an array of tocitems created by the [[xref>html_mktocitem()]] method. | | [[xref>getMenuIcon|getMenuIcon()]] | Allows you to override which icon to load on the Admin screen. Useful if you have multiple admin components and want to use different icons for them. | ===Inherited methods=== See [[common plugin functions]] for inherited functions available to all plugins. e.g. localisation, configuration and introspection. === Icon === Since the 2017 Frusterick Manners release, admin plugins can provide an icon to be shown next to the plugin's name on the admin screen. By default this icon will be searched at ''lib/plugins//admin.svg''. You can override the location with the ''getMenuIcon()'' method. There are a few restrictions the icon has to adhere to for it to be displayed: * It has to be in SVG format * The file has to be smaller than 2 kB * It should only contain a single path object The fill color of the path will be set by CSS and match the link color (unless your template does something different). To match the style of other icons, we recommend to either pick an icon from the huge, free selection at https://materialdesignicons.com/ or adhere to the [[https://material.io/guidelines/style/icons.html|Material Design Guidelines]] when designing your own icon. ===== Admin plugin trigger ===== A admin or moderator initiates interaction with the admin plugin by clicking the plugin's menu link in the [[:admin_window|admin window]]. Following that request, the plugin **handle()** method will be called and the result of **html()** be output in current template. ===Requests=== If the plugin needs to receive information back from the user it needs to ensure the following ''$_REQUEST'' variables are set in any forms the user may submit or links the user may click. * ''%%$_REQUEST['do'] = 'admin'%%'' \\ This tells DokuWiki its in admin mode. * ''%%$_REQUEST['page']%% = '' \\ This tells DokuWiki which plugin or component to call. When not set the admin menu will be shown. * ''%%$_REQUEST['id']%% = '' \\ The current page, if the user presses the show page button they will be shown this page. If urlrewriting is enabled this is part of the page url, use of [[xref>wl()]] handles this for you. Access via the global $ID variable. * ''%%$_REQUEST['sectok']%% = '' \\ Security token, from the form field generated by function [[xref>formSecurityToken()]] or auto-included when [[xref>Form]] class is used. Best practice is to include these variables in your plugin's HTML output as hidden form controls ('''' or when using [[xref>Form]] class ''%%$form->addHiddenField('page','data_clean')%%'') and on links as part of the query string as done in the admin window. See [[devel:admin_plugin_skeleton|Hello World admin plugin]] for an example. Use the global [[devel:request vars|$INPUT]] object for accessing these or your own ''$_REQUEST'' variables. ===== Example Hello World admin plugin ===== Here is the [[devel:admin_plugin_skeleton|hello world]] example. ===== Programming tips ===== * If you haven't read [[plugins|plugins development]] page about naming and deployment, do that. There is also a link to the plugin wizard which creates a skeleton with comments to get you started. * A plugin may vary its menu text on the main admin menu depending on its status or the state of what it administers. The [[plugin:usermanager|user manager]] plugin does it to indicate if authentication is used or not. See its [[xref>getMenuText()]] implementation. ==== Safety ==== The admin plugin has the opportunity to interact with the DokuWiki admin user through the data returned by forms and/or query strings, i.e. the $_REQUEST, $_POST or $_GET variables. Take special care to follow the next rules and please read [[devel:security|security guidelines for plugin authors]] for more details. * All user entered data must be treated with suspicion, even from users identified as admins by ACL settings. It is recommended to use DokuWiki [[request_vars|Input Class]]. This class gives you type safe access to the request variables, makes sure they are correctly initialized and allows you to set defaults. * Use the [[xref>hsc()]], the DokuWiki shortcut of [[phpfn>htmlspecialchars()]], to ensure any raw data output has all HTML special characters converted to HTML entities to protect from [[wp>Cross-site scripting]]. Also any wiki data extracted and used internally (eg. user names) should be treated with suspicion. * When using forms you should include a hidden form field with the session-based security token by calling the function [[xref>formSecurityToken()]]. Before you process the form input, call [[xref>checkSecurityToken()]]. This function checks if the sent security token is correct. This protect against [[wp>Cross-site request forgery]] attacks. See the [[#Hello World admin plugin|hello world]] example. If you use the [[xref>Form]] class the security token is automatically included. ==== Core API & globals ==== DokuWiki uses a number of global variables to hold information about the current page, current user and the actions being performed. Details of these can be found on the [[devel:environment]] page. ==== Localization & configuration ==== The plugin [[common plugin functions#Configuration|configuration]] and [[common plugin functions#localization]] explains the files and the functions needed for using these features. * Be sure to add at least the **''%%menu%%''** entry to the language file, because this will automatically be used for the admin menu on [[:admin window]]. **Example** Making the admin window menu link to your plugin called //FooBar admin//: ==== JavaScript & CSS ==== The user experience can be enhanced by using [[devel:javascript|JavaScript]] and [[devel:css|CSS Stylesheets]]. The [[devel:plugin_file_structure|plugin file structure]] shows where to include files. ===== Further reading ===== * [[Plugin programming tips]] * [[security|Security Guidelines for Plugin Authors]] * [[plugins|Plugin Development]] * [[plugintype>2#extension__table|Available admin plugins]]