Source for file function.adminonlinemanual.php
Documentation is available at function.adminonlinemanual.php
* Zikula Application Framework
* @copyright (c) 2002, Zikula Development Team
* @link http://www.zikula.org
* @version $Id: function.adminonlinemanual.php 24342 2008-06-06 12:03:14Z markwest $
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package Zikula_System_Modules
* Smarty function to displaya modules online manual
* <!--[adminonlinemanual]-->
* @author Frank Schummertz
* @see function.admincategorymenu.php::smarty_function_admincategoreymenu()
* @param array $params All attributes passed to this function from the template
* @param object &$smarty Reference to the Smarty object
* @param int xhtml if set, the link to the navtabs.css will be xhtml compliant
* @return string the results of the module function
$modpath = ($modinfo['type'] == 3) ? 'system' : 'modules';
$man_link = '<div style="margin-top: 20px; text-align:center">[ <a href="javascript:openwindow(\'' . $file . '\')">'. _ADMIN_ONLINEMANUAL. '</a> ]</div>'. "\n";
|