| // +---------------------------------------------------------------------------+ /** * Creates static html blocks. * * @package block * @author Andrey Podshivalov * @version 0.5 */ class Publisher_Block_Html { function init(&$output, $blockId, &$aParams) { SGL::logMessage(null, PEAR_LOG_DEBUG); return $this->getBlockContent($aParams); } function getBlockContent(&$aParams) { $html = array_key_exists('html', $aParams) ? $aParams['html'] : false; return $html; } } ?>