DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:tplinc

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
plugin:tplinc [2018-04-24 15:15] – created grosseplugin:tplinc [2024-01-08 15:54] (current) Aleksandr
Line 5: Line 5:
 author     : Andreas Gohr author     : Andreas Gohr
 email      : dokuwiki@cosmocode.de  email      : dokuwiki@cosmocode.de 
-type       :  +type       : admin, helper 
-lastupdate : 2017-03-28+lastupdate : 2023-01-03
 compatible : Greebo compatible : Greebo
 depends    :  depends    : 
Line 18: Line 18:
 donationurl:  donationurl: 
  
-screenshot_img : +screenshot_img : plugin:tplinc.png
 ---- ----
  
-[[http://www.cosmocode.de/en/open-source/dokuwiki-plugins/|{{ http://cosmocode.de/static/img/dokuwiki/dwplugins.png?recache|A CosmoCode Plugin}}]]+[[https://www.cosmocode.de/en/open-source/dokuwiki-plugins/|{{ https://www.cosmocode.de/static/img/dokuwiki/dwplugins.png?recache|A CosmoCode Plugin}}]] 
 + 
 +This plugin allows template authors to define areas in the template where additional content can be included. Users of that template can then use this plugin to define which logic should be used to determine the content (pages) that should be included depending on the current page. 
 + 
 +This is similar to how the sidebar works in the default template, only much more flexible. It is also possible to include multiple pages in the same area (one after another).
  
 ===== Installation ===== ===== Installation =====
  
-Install the plugin using the [[plugin:extension|Extension Manager]] and the download URL above, which points to latest version of the plugin. Refer to [[:Plugins]] on how to install plugins manually.+Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually.
  
 :!: The plugin needs a suitable template to provide hooks to which it can include the pages! So far, the following templates include such hooks: :!: The plugin needs a suitable template to provide hooks to which it can include the pages! So far, the following templates include such hooks:
 +
   * [[template:sprintdoc]]   * [[template:sprintdoc]]
 +
 +You can use this plugin with templates that use traditional include hooks, by calling the plugin from within those hook files. For the [[template:dokuwiki|DokuWiki Template]] you can simply use the hookfiles distributed with this plugin. To do so copy all the files within the ''dokuwiki'' directory of this plugin to your wiki's ''conf'' directory. This will make all the [[template:dokuwiki#supported Include Hooks]] available as hooks within this plugin.
 +
 +  cp lib/plugins/tplinc/dokuwiki/* conf/
  
 ===== Configuration and Settings ===== ===== Configuration and Settings =====
  
-To configure go to the respective section in your admin menu.+To configure, select "Template Includes" in the admin menu. Each include rule consists of four configs: 
 + 
 +  * **Pattern** -- this is a pattern that is matched against the currently shown page, when it matches, the rule is applied 
 +  * **Page** -- this is the page to include when the pattern matches 
 +  * **Location** -- this is where the page will be shown in the template, the available areas are set by the used template 
 +  * **Skip ACL** -- unless this box is ticked, only page the current user may read are included 
 + 
 +As pattern you can use the following: 
 + 
 +  * For a single page just specify its full page id 
 +  * For namespaces excluding subnamespaces use ''%%namespace:*%%'' 
 +  * For namespaces including subnamespaces use ''%%namespace:**%%'' 
 +  * Regular Expressions can be used starting and ending with ''/'' - they are matched against a '':'' prefixed full page id 
 + 
 +Pages can optionally be given as relative IDs and will be resolved against the current page's namespace. When matching regular expressions, matched groups can be reused in the inserted page name by referencing them as ''$0'', ''$1'', ..., ''$n''
 + 
 +Rules can be reordered by drag'n'drop.
  
 ===== Development ===== ===== Development =====
  
 +If you're a template author and want to integrate this plugin in your template, here is how you do it:
 +
 +==== Announcing available Include Locations ====
 +
 +You need to announce which locations are available in your template by registering a ''BEFORE'' handler for the ''PLUGIN_TPLINC_LOCATIONS_SET''. The ''%%$event->data%%'' is an associative array with location identifiers and their user readable descriptions.
 +
 +Please refer to [[devel:action_plugins|Action Plugins]] to learn more.
 +
 +Here's an example handler:
 +
 +<code php lib/tpl/example/TplIncludeHandler.php>
 +<?php
 +namespace dokuwiki\template\example;
 +
 +class TplIncludeHandler {
 +    public function __construct() {
 +        /** @var \Doku_Event_Handler */
 +        global $EVENT_HANDLER;
 +        $EVENT_HANDLER->register_hook('PLUGIN_TPLINC_LOCATIONS_SET', 'BEFORE', $this, 'registerIncludes');
 +    }
 +    
 +    public function registerIncludes(\Doku_Event $event) {
 +        $event->data['footer'] = 'Footer below the page content';
 +        $event->data['sidebarfooter'] = 'Footer below the sidebar';
 +        $event->data['sidebarheader'] = 'Header above the sidebar';
 +    }
 +}
 +</code>
 +
 +You'd call this handler at the beginning of your ''main.php'':
 +
 +<code php lib/tpl/example/main.php>
 +<?php
 +new dokuwiki\template\example\TplIncludeHandler();
 +
 +... main code follows
 +</code>
 +
 +Be sure the PHP namespaces match your template name.
 +
 +==== Using Includes ====
 +
 +At the places where you want to allow users to include pages, use the following code:
 +
 +<code php>
 +$tplinc = plugin_load('helper', 'tplinc');
 +if($tplinc) echo $tplinc->renderIncludes('footer');
 +</code>
 +
 +The ''footer'' string in the example above refers to one of the location identifiers announced earlier.
  
 ==== Commit-Ticker ==== ==== Commit-Ticker ====
Line 43: Line 118:
 **Releases:** **Releases:**
 {{rss>https://github.com/cosmocode/dokuwiki-plugin-tplinc/releases.atom description author}} {{rss>https://github.com/cosmocode/dokuwiki-plugin-tplinc/releases.atom description author}}
- 
- 
  
  
plugin/tplinc.1524575737.txt.gz · Last modified: 2018-04-24 15:15 by grosse

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki