1*70316b84SAndreas Gohr<?php 2*70316b84SAndreas Gohr/** 3*70316b84SAndreas Gohr * DokuWiki Plugin @@PLUGIN_NAME@@ (Renderer Component) 4*70316b84SAndreas Gohr * 5*70316b84SAndreas Gohr * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 6*70316b84SAndreas Gohr * @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> 7*70316b84SAndreas Gohr */ 8*70316b84SAndreas Gohrclass @@PLUGIN_COMPONENT_NAME@@ extends Doku_Renderer 9*70316b84SAndreas Gohr{ 10*70316b84SAndreas Gohr 11*70316b84SAndreas Gohr /** @inheritDoc */ 12*70316b84SAndreas Gohr public function getFormat() 13*70316b84SAndreas Gohr { 14*70316b84SAndreas Gohr return '@@PLUGIN_NAME@@'; 15*70316b84SAndreas Gohr } 16*70316b84SAndreas Gohr 17*70316b84SAndreas Gohr // FIXME implement all methods of Doku_Renderer here 18*70316b84SAndreas Gohr} 19*70316b84SAndreas Gohr 20