29 lines
569 B
PHP
Executable File
29 lines
569 B
PHP
Executable File
<?php
|
|
// $Id$
|
|
/**
|
|
* Null Serializer
|
|
*
|
|
* @category HTML
|
|
* @package AJAX
|
|
* @author Joshua Eichorn <josh@bluga.net>
|
|
* @copyright 2005 Joshua Eichorn
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
* @version Release: 0.5.6
|
|
* @link http://pear.php.net/package/PackageName
|
|
*/
|
|
class HTML_AJAX_Serializer_Null
|
|
{
|
|
|
|
function serialize($input)
|
|
{
|
|
return $input;
|
|
}
|
|
|
|
function unserialize($input)
|
|
{
|
|
return $input;
|
|
}
|
|
}
|
|
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
|
|
?>
|