contributions/text.placeholders/lib/interfaces/itextplaceholder.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Interface for textplaceholder 00004 */ 00005 interface ITextPlaceholder { 00006 /** 00007 * Apply on given text 00008 * 00009 * @params string $text 00010 * @return string 00011 */ 00012 public function apply($text); 00013 }