50 if (isset($this->htmlOptions[
'class'])) {
51 $this->htmlOptions[
'class'] .=
' hero-unit';
53 $this->htmlOptions[
'class'] =
'hero-unit';
56 echo CHtml::openTag(
'div', $this->htmlOptions);
58 if ($this->encodeHeading) {
59 $this->heading = CHtml::encode($this->heading);
62 if (isset($this->heading)) {
63 echo CHtml::tag(
'h1', $this->headingOptions, $this->heading);
74 echo CHtml::closeTag(
'div');