gyro/core/lib/interfaces/iconverter.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Generic conversion interface 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface IConverter { 00009 public function encode($value, $params = false); 00010 public function decode($value, $params = false); 00011 } 00012 ?>