Hello,
I would like to ask if it is possible to change some dashlets at home screen of all users? After upgrade to 5.2. new dashlets appeared automatically and I want to remove them and to change other dashlets settings for all users.
Hello,
I would like to ask if it is possible to change some dashlets at home screen of all users? After upgrade to 5.2. new dashlets appeared automatically and I want to remove them and to change other dashlets settings for all users.
Hi
The home page have Add Dashlets button. Through this button you can customize the home page Dashlets.
Hi,
I know that, but what if I want to do it as admin, for all users...?
Hi duffy
Have a look on modules/Home/index.php
SugarCRM retrieve the user dashlet definition from
You just need to generate an array containing all pages and a new one containing all dashlets you want to make visible on Home Page for all users and set the preferences for all users:PHP Code:$pages = $current_user->getPreference('pages', 'Home');
$dashlets = $current_user->getPreference('dashlets', 'Home');
You need to foreach all users and set their preferences.PHP Code:$current_user->setPreference('pages', $pages, 0, 'Home');
$current_user->setPreference('dashlets', $dashlets, 0, 'Home');
Cheers
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 7636-5859
e-mail: andre@lampadaglobal.com
Lampada Global delivers offshore software development and support services to customers around the world.
Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.
I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks