* @copyright 2004 by http://wombat.exit0.net * @package wombatSite * @subpackage contentFetcher */ /** * content fetcher: Example * * @version 1.0.0 * @package wombatSite * @subpackage contentFetcher */ class wbContentFetcher_Example { /** * fetch content * * Parameter * foo/bar * * * @access public * @param string $param parameter/... * @return boolean $result true on success */ function fetchHtml( $param ) { return 'Example: ' . $param . ''; } } ?>