Topic: Dashboard breaks again?
Latest Dashboard theme and module installed and activated from the fa repo does not seem to have a menu tab for itself as was available earlier and shown in the wiki.
The current hg 3227 version shows it as in the attachment
Since the Dashboard Menu tab's contents like Dashboard Setup and Reminder Setup are now in the Miscellaneous Submenu of the Setup Menu, has the Menu Tab been dispensed with?
The company/*/js_cache had been flushed and the browser restarted on fresh login to no avail.
Is this because the Line 18 in modules/dashboard/dashboard.php is commented out (line 9-20):
class dashboard_app extends application
{
var $widgets;
var $apps;
function dashboard_app()
{
$this->application("Dashboard", _($this->help_context = "&Dashboard"));
//$this->add_module(_("Dashboard"));
$this->widgets = array();
$this->add_extensions();
This is so even though the lines 12-21 that call it in modules/dashboard/hooks.php are:
class hooks_dashboard extends hooks {
var $module_name = 'dashboard';
/*
Install additonal menu options provided by module
*/
function install_tabs($app) {
$app->add_application(new dashboard_app);
}