3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2013
40 class CRM_Contact_Page_DashBoard
extends CRM_Core_Page
{
49 // Add dashboard js and css
50 $resources = CRM_Core_Resources
::singleton();
51 $resources->addScriptFile('civicrm', 'packages/jquery/plugins/jquery.dashboard.js', 0, 'html-header', FALSE);
52 $resources->addStyleFile('civicrm', 'packages/jquery/css/dashboard.css');
54 $config = CRM_Core_Config
::singleton();
56 // Add dashlet-specific js files
57 // TODO: Need a much better way of managing on-the-fly js requirements. Require.js perhaps?
58 // Checking if a specific dashlet is enabled is a pain and including the js here sucks anyway
59 // So here's a compromise:
60 if (in_array('CiviCase', $config->enableComponents
)) {
61 $resources->addScriptFile('civicrm', 'templates/CRM/Case/Form/ActivityChangeStatus.js');
64 $resetCache = CRM_Utils_Request
::retrieve('resetCache', 'Positive', CRM_Core_DAO
::$_nullObject);
66 CRM_Utils_System
::setTitle(ts('CiviCRM Home'));
67 $session = CRM_Core_Session
::singleton();
68 $contactID = $session->get('userID');
71 CRM_Core_BAO_Dashboard
::resetDashletCache($contactID);
74 // call hook to get html from other modules
75 // ignored but needed to prevent warnings
76 $contentPlacement = CRM_Utils_Hook
::DASHBOARD_BELOW
;
77 $html = CRM_Utils_Hook
::dashboard($contactID, $contentPlacement);
78 if (is_array($html)) {
79 $this->assign_by_ref('hookContent', $html);
80 $this->assign('hookContentPlacement', $contentPlacement);
83 //check that default FROM email address, owner (domain) organization name and default mailbox are configured.
86 $defaultMailboxOK = TRUE;
88 // Don't put up notices if user doesn't have administer CiviCRM permission
89 if (CRM_Core_Permission
::check('administer CiviCRM')) {
90 $destination = CRM_Utils_System
::url(
96 $destination = urlencode($destination);
98 list($domainEmailName, $domainEmailAddress) = CRM_Core_BAO_Domain
::getNameAndEmail(TRUE);
100 if (!$domainEmailAddress ||
$domainEmailAddress == 'info@EXAMPLE.ORG') {
101 $fixEmailUrl = CRM_Utils_System
::url("civicrm/admin/domain", "action=update&reset=1&civicrmDestination={$destination}");
102 $this->assign('fixEmailUrl', $fixEmailUrl);
103 $fromEmailOK = FALSE;
106 $domain = CRM_Core_BAO_Domain
::getDomain();
107 $domainName = $domain->name
;
108 if (!$domainName ||
$domainName == 'Default Domain Name') {
109 $fixOrgUrl = CRM_Utils_System
::url("civicrm/admin/domain", "action=update&reset=1&civicrmDestination={$destination}");
110 $this->assign('fixOrgUrl', $fixOrgUrl);
114 if (in_array('CiviMail', $config->enableComponents
) &&
115 CRM_Core_BAO_MailSettings
::defaultDomain() == "EXAMPLE.ORG"
117 $fixDefaultMailbox = CRM_Utils_System
::url('civicrm/admin/mailSettings', "reset=1&civicrmDestination={$destination}");
118 $this->assign('fixDefaultMailbox', $fixDefaultMailbox);
119 $defaultMailboxOK = FALSE;
123 $this->assign('fromEmailOK', $fromEmailOK);
124 $this->assign('ownerOrgOK', $ownerOrgOK);
125 $this->assign('defaultMailboxOK', $defaultMailboxOK);
127 $communityMessages = CRM_Core_CommunityMessages
::create();
128 if ($communityMessages->isEnabled()) {
129 $message = $communityMessages->pick();
131 $this->assign('communityMessages', $communityMessages->evalMarkup($message['markup']));
135 return parent
::run();