Beispiel #1
0
 static function getHelpFilePath(Web $w, $module, $submodule, $action)
 {
     $help_file = $w->getModuleDir($module) . "/help" . ($submodule ? "/" . $submodule : "") . "/" . $action . ".help";
     if (file_exists($help_file)) {
         return $help_file;
     }
     return null;
 }
Beispiel #2
0
/**
* Send media files from within
* a modules help/media folder
*
* @param unknown_type $w
*/
function media_GET(Web &$w)
{
    $p = $w->pathMatch("m", "f");
    $m = $p['m'];
    $f = $p['f'];
    $filename = str_replace("..", "", ROOT . "/" . $w->getModuleDir($m) . '/help/media/' . $f);
    $w->sendFile($filename);
}