Beispiel #1
0
 public static function templateMatches($matches)
 {
     $search = mfcs::$engine->retTempObj("mfcsSearch");
     $attPairs = attPairs($matches[1]);
     $output = "Error in mfcsSearch";
     switch ($attPairs['name']) {
         case "formList":
             $output = mfcsSearch::formListing();
             break;
         default:
             $output = "Error: name function '" . $attPairs['name'] . "' not found.";
     }
     return $output;
 }