Example #1
0
 /**
  * Renders a HTML content tag.
  *
  * The id attribute is added automatically to the array of attributes if none is specified.
  * If uses for "id_format" option to generate the id.
  *
  * @param  string $tag         The tag name
  * @param  string $content     The content of the tag
  * @param  array  $attributes  An array of HTML attributes to be merged with the default HTML attributes
  *
  * @return string An HTML tag string
  */
 public function renderContentTag($tag, $content = null, $attributes = array())
 {
     return parent::renderContentTag($tag, $content, $this->fixFormId($attributes));
 }