Page MenuHomeDevCentral

help.php
No OneTemporary

help.php

<?php
/**
* _, __, _, _ __, _ _, _, _
* / \ |_) (_ | | \ | /_\ |\ |
* \ / |_) , ) | |_/ | | | | \|
* ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
*
* Controller
*
* @package ObsidianWorkspaces
* @subpackage Controllers
* @author Sébastien Santoro aka Dereckson <dereckson@espace-win.org>
* @license http://www.opensource.org/licenses/bsd-license.php BSD
* @filesource
*
*/
//
// HTML output
//
$file = $Config['Content']['Help'] . '/' . ($context->url[1] ? $context->url[1] : 'index') . '.html';
if (!file_exists($file)) {
ErrorPageController::show($context, 404);
exit;
}
//Header
$smarty->assign('controller_custom_nav', 'nav_help.tpl');
HeaderController::run($context);
//Help page
$smarty->assign('help_file', $file);
$smarty->display('help.tpl');
//Footer
FooterController::run($context);

File Metadata

Mime Type
text/x-php
Expires
Wed, Apr 2, 18:21 (12 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2535302
Default Alt Text
help.php (833 B)

Event Timeline