/**
  * Returns TRUE if the last part of $haystack matches the string $needle
  *
  * @param string $haystack Full string to check
  * @param string $needle Reference string which must be found as the "first part" of the full string
  * @return boolean TRUE if $partStr was found to be equal to the first part of $str
  */
 public static function isLastPartOfStr($haystack, $needle)
 {
     return Tx_Rnbase_Utility_Strings::isLastPartOfStr($haystack, $needle);
 }