/**
  * 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);
 }