Usage: $it = new InsertTags(); echo $it->replace($text);
Inheritance: extends Controller
 /**
  * {@inheritDoc}
  */
 public function replace($content, $cache = true)
 {
     return $this->insertTags->replace($content, $cache);
 }
 /**
  * Replace insert tags with their values
  *
  * @param string  $strBuffer The text with the tags to be replaced
  * @param boolean $blnCache  If false, non-cacheable tags will be replaced
  *
  * @return string The text with the replaced tags
  */
 public static function replaceInsertTags($strBuffer, $blnCache = true)
 {
     $objIt = new InsertTags();
     return $objIt->replace($strBuffer, $blnCache);
 }