buildCache(); } require_once($GLOBALS['sugar_config']['cache_dir'].'dashlets/dashlets.php'); require('modules/Home/dashlets.php'); $pages = $current_user->getPreference('pages', 'Home'); $dashlets = $current_user->getPreference('dashlets', 'Home'); $defaultHomepage = false; // BEGIN fill in with default homepage and dashlet selections $hasUserPreferences = (!isset($pages) || empty($pages) || !isset($dashlets) || empty($dashlets)) ? false : true; if(!$hasUserPreferences){ $dashlets = array(); //list of preferences to move over and to where $prefstomove = array( 'mypbss_date_start' => 'MyPipelineBySalesStageDashlet', 'mypbss_date_end' => 'MyPipelineBySalesStageDashlet', 'mypbss_sales_stages' => 'MyPipelineBySalesStageDashlet', 'mypbss_chart_type' => 'MyPipelineBySalesStageDashlet', 'lsbo_lead_sources' => 'OpportunitiesByLeadSourceByOutcomeDashlet', 'lsbo_ids' => 'OpportunitiesByLeadSourceByOutcomeDashlet', 'pbls_lead_sources' => 'OpportunitiesByLeadSourceDashlet', 'pbls_ids' => 'OpportunitiesByLeadSourceDashlet', 'pbss_date_start' => 'PipelineBySalesStageDashlet', 'pbss_date_end' => 'PipelineBySalesStageDashlet', 'pbss_sales_stages' => 'PipelineBySalesStageDashlet', 'pbss_chart_type' => 'PipelineBySalesStageDashlet', 'obm_date_start' => 'OutcomeByMonthDashlet', 'obm_date_end' => 'OutcomeByMonthDashlet', 'obm_ids' => 'OutcomeByMonthDashlet'); //upgrading from pre-5.0 homepage $old_columns = $current_user->getPreference('columns', 'home'); $old_dashlets = $current_user->getPreference('dashlets', 'home'); if (isset($old_columns) && !empty($old_columns) && isset($old_dashlets) && !empty($old_dashlets)){ $columns = $old_columns; $dashlets = $old_dashlets; // resetting old columns and dashlets to have no preference and data $old_columns = array(); $old_dashlets = array(); $current_user->setPreference('columns', $old_columns, 0, 'home'); $current_user->setPreference('dashlets', $old_dashlets, 0, 'home'); } else{ // This is here to get Sugar dashlets added above the rest $dashlets[create_guid()] = array('className' => 'iFrameDashlet', 'module' => 'Home', 'forceColumn' => 0, 'fileLocation' => $dashletsFiles['iFrameDashlet']['file'], 'options' => array('title' => translate('LBL_DASHLET_DISCOVER_SUGAR_PRO','Home'), 'url' => 'http://www.sugarcrm.com/crm/product/gopro', 'height' => 315, )); $dashlets[create_guid()] = array ('className' => 'SugarFeedDashlet', 'module' => 'SugarFeed', 'forceColumn' => 1, 'fileLocation' => $dashletsFiles['SugarFeedDashlet']['file'], ); $dashlets[create_guid()] = array('className' => 'iFrameDashlet', 'module' => 'Home', 'forceColumn' => 1, 'fileLocation' => $dashletsFiles['iFrameDashlet']['file'], 'options' => array('title' => translate('LBL_DASHLET_SUGAR_NEWS','Home'), 'url' => 'http://www.sugarcrm.com/crm/product/news', 'height' => 315, )); foreach($defaultDashlets as $dashletName=>$module){ // clint - fixes bug #20398 // only display dashlets that are from visibile modules and that the user has permission to list $myDashlet = new MySugar($module); $displayDashlet = $myDashlet->checkDashletDisplay(); if (isset($dashletsFiles[$dashletName]) && $displayDashlet){ $options = array(); $prefsforthisdashlet = array_keys($prefstomove,$dashletName); foreach ( $prefsforthisdashlet as $pref ) { $options[$pref] = $current_user->getPreference($pref); } $dashlets[create_guid()] = array('className' => $dashletName, 'module' => $module, 'forceColumn' => 0, 'fileLocation' => $dashletsFiles[$dashletName]['file'], 'options' => $options); } } $count = 0; $columns = array(); $columns[0] = array(); $columns[0]['width'] = '60%'; $columns[0]['dashlets'] = array(); $columns[1] = array(); $columns[1]['width'] = '40%'; $columns[1]['dashlets'] = array(); foreach($dashlets as $guid=>$dashlet) { if( $dashlet['forceColumn'] == 0 ) array_push($columns[0]['dashlets'], $guid); else array_push($columns[1]['dashlets'], $guid); $count++; } } $current_user->setPreference('dashlets', $dashlets, 0, 'Home'); } // handles upgrading from versions that had the 'Dashboard' module; move those items over to the Home page $pagesDashboard = $current_user->getPreference('pages', 'Dashboard'); $dashletsDashboard = $current_user->getPreference('dashlets', 'Dashboard'); if ( !empty($pagesDashboard) ) { // move dashlets from the dashboard to be at the end of the home screen dashlets foreach ($pagesDashboard[0]['columns'] as $dashboardColumnKey => $dashboardColumn ) { foreach ($dashboardColumn['dashlets'] as $dashletItem ) { $pages[0]['columns'][$dashboardColumnKey]['dashlets'][] = $dashletItem; } } $pages = array_merge($pages,$pagesDashboard); $current_user->setPreference('pages', $pages, 0, 'Home'); } if ( !empty($dashletsDashboard) ) { $dashlets = array_merge($dashlets,$dashletsDashboard); $current_user->setPreference('dashlets', $dashlets, 0, 'Home'); } if ( !empty($pagesDashboard) || !empty($dashletsDashboard) ) $current_user->resetPreferences('Dashboard'); if (empty($pages)){ $pages = array(); $pageIndex = 0; $pages[0]['columns'] = $columns; $pages[0]['numColumns'] = '2'; $pages[0]['pageTitle'] = $mod_strings['LBL_HOME_PAGE_1_NAME']; // "My Sugar" $pageIndex++; $current_user->setPreference('pages', $pages, 0, 'Home'); $activePage = 0; } $sugar_smarty = new Sugar_Smarty(); $activePage = 0; $divPages[] = $activePage; $numCols = $pages[$activePage]['numColumns']; $count = 0; $dashletIds = array(); // collect ids to pass to javascript $display = array(); foreach($pages[$activePage]['columns'] as $colNum => $column) { if ($colNum == $numCols){ break; } $display[$colNum]['width'] = $column['width']; $display[$colNum]['dashlets'] = array(); foreach($column['dashlets'] as $num => $id) { // clint - fixes bug #20398 // only display dashlets that are from visibile modules and that the user has permission to list if(!empty($id) && isset($dashlets[$id]) && is_file($dashlets[$id]['fileLocation'])) { $module = 'Home'; if ( !empty($dashletsFiles[$dashlets[$id]['className']]['module']) ) $module = $dashletsFiles[$dashlets[$id]['className']]['module']; // Bug 24772 - Look into the user preference for the module the dashlet is a part of in case // of the Report Chart dashlets. elseif ( !empty($dashlets[$id]['module']) ) $module = $dashlets[$id]['module']; $myDashlet = new MySugar($module); if($myDashlet->checkDashletDisplay()) { require_once($dashlets[$id]['fileLocation']); $dashlet = new $dashlets[$id]['className']($id, (isset($dashlets[$id]['options']) ? $dashlets[$id]['options'] : array())); // Need to add support to dynamically display/hide dashlets // If it has a method 'shouldDisplay' we will call it to see if we should display it or not if (method_exists($dashlet,'shouldDisplay')) { if (!$dashlet->shouldDisplay()) { // This dashlet doesn't want us to show it, skip it. continue; } } array_push($dashletIds, $id); $dashlets = $current_user->getPreference('dashlets', 'Home'); // Using hardcoded 'Home' because DynamicAction.php $_REQUEST['module'] value is always Home $lvsParams = array(); if(!empty($dashlets[$id]['sort_options'])){ $lvsParams = $dashlets[$id]['sort_options']; } $dashlet->process($lvsParams); try { $display[$colNum]['dashlets'][$id]['display'] = $dashlet->display(); $display[$colNum]['dashlets'][$id]['displayHeader'] = $dashlet->getHeader(); $display[$colNum]['dashlets'][$id]['displayFooter'] = $dashlet->getFooter(); if($dashlet->hasScript) { $display[$colNum]['dashlets'][$id]['script'] = $dashlet->displayScript(); } } catch (Exception $ex) { $display[$colNum]['dashlets'][$id]['display'] = $ex->getMessage(); $display[$colNum]['dashlets'][$id]['displayHeader'] = $dashlet->getHeader(); $display[$colNum]['dashlets'][$id]['displayFooter'] = $dashlet->getFooter(); } } } } } if(!empty($sugar_config['lock_homepage']) && $sugar_config['lock_homepage'] == true) $sugar_smarty->assign('lock_homepage', true); $sugar_smarty->assign('sugarVersion', $sugar_version); $sugar_smarty->assign('sugarFlavor', $sugar_flavor); $sugar_smarty->assign('currentLanguage', $GLOBALS['current_language']); $sugar_smarty->assign('serverUniqueKey', $GLOBALS['server_unique_key']); $sugar_smarty->assign('imagePath', $GLOBALS['image_path']); $sugar_smarty->assign('jsCustomVersion', $sugar_config['js_custom_version']); $sugar_smarty->assign('maxCount', empty($sugar_config['max_dashlets_homepage']) ? 15 : $sugar_config['max_dashlets_homepage']); $sugar_smarty->assign('dashletCount', $count); $sugar_smarty->assign('dashletIds', '["' . implode('","', $dashletIds) . '"]'); $sugar_smarty->assign('columns', $display); global $theme; $sugar_smarty->assign('theme', $theme); $sugar_smarty->assign('divPages', $divPages); $sugar_smarty->assign('activePage', $activePage); $sugar_smarty->assign('current_user', $current_user->id); $sugar_smarty->assign('lblAdd', $GLOBALS['app_strings']['LBL_ADD_BUTTON']); $sugar_smarty->assign('lblAddDashlets', $GLOBALS['app_strings']['LBL_ADD_DASHLETS']); $sugar_smarty->assign('lblLnkHelp', $GLOBALS['app_strings']['LNK_HELP']); $sugar_smarty->assign('mod', return_module_language($sugar_config['default_language'], 'Home')); $sugar_smarty->assign('app', $GLOBALS['app_strings']); $sugar_smarty->assign('module', 'Home'); //custom chart code require_once('include/SugarCharts/SugarChartFactory.php'); $sugarChart = SugarChartFactory::getInstance(); $resources = $sugarChart->getChartResources(); $mySugarResources = $sugarChart->getMySugarChartResources(); $sugar_smarty->assign('chartResources', $resources); $sugar_smarty->assign('mySugarChartResources', $mySugarResources); echo $sugar_smarty->fetch('include/MySugar/tpls/MySugar.tpl'); ?>