set($title); } elseif ($setType == Zend_View_Helper_Placeholder_Container_Abstract::PREPEND) { $this->prepend($title); } else { $this->append($title); } } return $this; } public function toString ($indent = null) { $indent = (null !== $indent) ? $this->_getWhitespace($indent) : $this->getIndent(); $items = array(); foreach ($this as $item) { $items[] = $item; } $separator = $this->_escape($this->getSeparator()); if (empty($separator)) $separator='->'; return $indent . implode($separator, $items); } }