WIP EGroupware Tutorial:

- Add autoload tutorial to Home app
This commit is contained in:
Hadi Nategh
2015-10-09 07:31:35 +00:00
parent 7b0ba9fb95
commit 781f128265
3 changed files with 57 additions and 8 deletions

View File

@ -98,7 +98,9 @@ app.classes.home = AppJS.extend(
{
// call parent
this._super.apply(this, arguments);
this.tutorial_autoload_popup();
this.et2.set_id('home.index');
this.et2.set_actions(this.et2.getArrayMgr('modifications').getEntry('home.index')['actions']);
@ -786,6 +788,35 @@ app.classes.home = AppJS.extend(
{
frame.set_value(widget.get_value());
}
},
/**
* Open tutorial popup with a general video about egroupware
* the popup can be discarded for the next time show if user
* check the discard checkbox
*/
tutorial_autoload_popup:function()
{
var discarded = this.egw.preference('egw_tutorial_autoload', 'home');
if (!discarded)
{
this.egwTutorialPopup('home-'+this.egw.preference('lang')+'-0-a');
}
},
/**
* Function calls on discard checkbox and will set
* the egw_tutorial_autoload preference
*
* @param {type} egw
* @param {type} widget
*/
tutorial_autoloadDiscard: function (egw, widget)
{
if (widget)
{
this.egw.set_preference('home', 'egw_tutorial_autoload', widget.get_value());
}
}
});