mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
WIP EGroupware Tutorial:
- Add disable option in admin site configuration in order to be able to switch off the tutorials menu in sideboxes
This commit is contained in:
parent
781f128265
commit
52a3e2240c
@ -101,6 +101,16 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="row_off">
|
||||
<td>{lang_Disable_EGroupware_Tutorial_in_sidebox_menu}:</td>
|
||||
<td>
|
||||
<select name="newsettings[egw_tutorial_disable]">
|
||||
<option value="">{lang_No}</option>
|
||||
<option value="True">{lang_Yes}</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr class="th">
|
||||
<td colspan="2"> <b>{lang_security}</b></td>
|
||||
</tr>
|
||||
|
@ -386,6 +386,8 @@ class hooks
|
||||
* @param type $appname application name
|
||||
*/
|
||||
public static function egw_tutorial_menu($appname)
|
||||
{
|
||||
if (!$GLOBALS['egw_info']['server']['egw_tutorial_disable'])
|
||||
{
|
||||
$file = Array (
|
||||
array(
|
||||
@ -399,3 +401,4 @@ class hooks
|
||||
display_sidebox($appname, lang('EGroupware Tutorial'), $file);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user