protected static function _getComponentDetails($template)
 {
     $module_file = self::getModuleAndTemplate($template);
     $actionClassName = Context::isInternalModule($module_file['module']) ? "\\thebuggenie\\core\\modules\\" . $module_file['module'] . "\\Components" : "\\thebuggenie\\modules\\" . $module_file['module'] . "\\Components";
     $actionToRunName = 'component' . ucfirst($module_file['file']);
     return array($module_file, $actionClassName, $actionToRunName);
 }