gyro/core/lib/interfaces/ifiltertextadapter.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Translates URL into free text filter 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface IFilterTextAdapter { 00009 /** 00010 * Return current value to be filtered after 00011 * 00012 * @return string 00013 */ 00014 public function get_value(); 00015 00016 /** 00017 * Name of param holding value 00018 * 00019 * @return string 00020 */ 00021 public function get_param(); 00022 00023 /** 00024 * Name of param indicating reset 00025 * 00026 * @return string 00027 */ 00028 public function get_reset_param(); 00029 }