You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
622 B
27 lines
622 B
<?php namespace Majestic\View\Helpers;
|
|
/**
|
|
* @copyright NetMonsters <team@netmonsters.ru>
|
|
* @link http://netmonsters.ru
|
|
* @package Majestic
|
|
* @subpackage View
|
|
* @since 2010-03-16
|
|
*/
|
|
|
|
class HeadViewHelper extends ViewHelper
|
|
{
|
|
|
|
public function head($string = false)
|
|
{
|
|
if ($string) {
|
|
$data = \Majestic\Registry::get(__CLASS__, array());
|
|
$data[] = $string;
|
|
\Majestic\Registry::set(__CLASS__, $data);
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
public function __toString()
|
|
{
|
|
return implode("\n ", \Majestic\Registry::get(__CLASS__, array())) . "\n";
|
|
}
|
|
}
|