1<?php 2 3/** 4 * Citations for DokuWiki 5 * 6 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 7 * @author Terence J. Grant<tjgrant@tatewake.com> 8 */ 9 10class admin_plugin_cite extends DokuWiki_Admin_Plugin 11{ 12 /** @inheritdoc */ 13 public function handle() 14 { 15 } 16 17 /** 18 * output appropriate html 19 */ 20 public function html() 21 { 22 echo '<div class="plugin_cite">'; 23 24 echo $this->locale_xhtml('intro'); 25 26 echo '</div>'; 27 } 28} 29