1<?php 2/** 3 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 4 * @author Brend Wanders <b.wanders@utwente.nl> 5 */ 6// must be run within Dokuwiki 7if(!defined('DOKU_INC')) die('Meh.'); 8 9/** 10 * The verbatim string type. 11 */ 12class plugin_strata_type_text extends plugin_strata_type { 13 // uses base functionality 14 function getInfo() { 15 return array( 16 'desc'=>'Verbatim text. Does not format, ignores hint.' 17 ); 18 } 19} 20