<?php
/**
*
* Helper for meta tags.
*
* @category Solar
*
* @package Solar_View_Helper
*
* @author Jeff Surgeson <hide@address.com>
*
* @author Rodrigo Moraes <hide@address.com>
*
* @license http://opensource.org/licenses/bsd-license.php BSD
*
* @version $Id: Meta.php 4285 2009-12-31 02:18:15Z pmjones $
*
*/
class Solar_View_Helper_Meta extends Solar_View_Helper
{
/**
*
* Returns a <meta ... /> tag.
*
* @param string $attribs The specification array, typically
* with keys 'name' or 'http-equiv', and 'content'.
*
* @return string The <meta ... /> tag.
*
*/
public function meta($attribs)
{
return '<meta' . $this->_view->attribs($attribs) . ' />';
}
}