$Part) { $ClassNameParts[$Index] = ucfirst($Part); } $ClassName = implode($ClassNameParts). 'Template'; $LoadedTemplates[$TemplateName] = $ClassName; } $ClassName::render($Args); } /** * This method is similar to render_template, but does not require a * template class. * * Instead, this method simply renders a PHP file (PHTML) with the supplied * variables. * * All files must be placed within {self::IncludePath}. Create and organize * new paths and files. (eg: /design/views/artist/, design/view/forums/, etc.) * * @static * @param string $TemplateFile A relative path to a PHTML file * @param array $Variables Assoc. array of variables to extract for the template * @example
 $some_id));
	 * 
*/ static public function parse ($TemplateFile, array $Variables = null) { $Template = self::IncludePath . $TemplateFile; if (file_exists($Template)) { extract($Variables); include $Template; } } }