/** @return string with html describing the attempted class names and folders * @param array $attempted that was filled by ::tryUseHandlerClass */ function getHandlersTriedString($attempted) { $result = "<TABLE>\n"; foreach ($attempted as $params) $result .= "<TR><TD class=pntNormal>$params[1]$params[0]</TD></TR>\n"; $result .= "</TABLE>\n"; return $result; } |