public static function load($path) { $to_load = rsFormPath($path); $ret = MarkupInterpreter::load($to_load, 'sys.display.form.Form'); return $ret; }
public static function load($path) { $to_load = rsViewPath($path); $ret = MarkupInterpreter::load($to_load, 'sys.display.rsml.RsmlView'); return $ret; }
/** * Clear the cache for a particular file path * @param path - the path for which to clear the cache for * @access protected */ protected function clearCache($path) { $path = MarkupInterpreter::cachePath($path); FileUtility::deleteFilesMatchingWildCard(Application::CACHE . '*' . $path . '*'); }
public static function load($path) { $to_load = rsViewPath($path); $ret = MarkupInterpreter::load($to_load, 'remote.rsml.RemoteView'); return $ret; }