1*4d6d17d0SAndreas Gohr<?php 2*4d6d17d0SAndreas Gohr/** 3*4d6d17d0SAndreas Gohr * DokuWiki Plugin acknowledge (Helper Component) 4*4d6d17d0SAndreas Gohr * 5*4d6d17d0SAndreas Gohr * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 6*4d6d17d0SAndreas Gohr * @author Andreas Gohr, Anna Dabrowska <dokuwiki@cosmocode.de> 7*4d6d17d0SAndreas Gohr */ 8*4d6d17d0SAndreas Gohr 9*4d6d17d0SAndreas Gohr// must be run within Dokuwiki 10*4d6d17d0SAndreas Gohrif (!defined('DOKU_INC')) { 11*4d6d17d0SAndreas Gohr die(); 12*4d6d17d0SAndreas Gohr} 13*4d6d17d0SAndreas Gohr 14*4d6d17d0SAndreas Gohrclass helper_plugin_acknowledge extends DokuWiki_Plugin 15*4d6d17d0SAndreas Gohr{ 16*4d6d17d0SAndreas Gohr 17*4d6d17d0SAndreas Gohr} 18*4d6d17d0SAndreas Gohr 19