/**
  * Substitues multiple subparts at once
  *
  * @param	string		The content stream, typically HTML template content.
  * @param	array		The array of key/value pairs being subpart/content values used in the substitution. For each element in this array the function will substitute a subpart in the content stream with the content.
  * @return	string		The processed HTML content string.
  */
 public function substituteSubpartArray($content, array $subpartsContent)
 {
     return t3lib_parsehtml::substituteSubpartArray($content, $subpartsContent);
 }