gyro/core/lib/interfaces/ifilteradapter.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Translates URLs into filter 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface IFilterAdapter { 00009 /** 00010 * Return key for given group 00011 * 00012 * @return string 00013 */ 00014 public function get_current_key($group_id, $default = ''); 00015 00016 /** 00017 * Build URL for filter 00018 */ 00019 public function get_filter_link($filter, $group_id); 00020 }