Skip to content
Snippets Groups Projects
Commit e81ccbf6 authored by Frank J. Gómez's avatar Frank J. Gómez
Browse files

CRM-13662 - Add classes to user dashboard elements.

----------------------------------------
* CRM-13662: Add CSS selectors to dashboard elements
  http://issues.civicrm.org/jira/browse/CRM-13662
parent 3e101cf8
No related branches found
No related tags found
No related merge requests found
......@@ -138,8 +138,10 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
) {
$userDashboard = $component->getUserDashboardObject();
$dashboardElements[] = array('templatePath' => $userDashboard->getHookedTemplateFileName(),
$dashboardElements[] = array(
'class' => 'crm-dashboard-' . strtolower($component->name),
'sectionTitle' => $elem['title'],
'templatePath' => $userDashboard->getTemplateFileName(),
'weight' => $elem['weight'],
);
$userDashboard->run();
......@@ -148,6 +150,7 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
if (CRM_Utils_Array::value('Permissioned Orgs', $this->_userOptions)) {
$dashboardElements[] = array(
'class' => 'crm-dashboard-permissionedOrgs',
'templatePath' => 'CRM/Contact/Page/View/Relationship.tpl',
'sectionTitle' => ts('Your Contacts / Organizations'),
'weight' => 40,
......@@ -164,6 +167,7 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
if (CRM_Utils_Array::value('PCP', $this->_userOptions)) {
$dashboardElements[] = array(
'class' => 'crm-dashboard-pcp',
'templatePath' => 'CRM/Contribute/Page/PcpUserDashboard.tpl',
'sectionTitle' => ts('Personal Campaign Pages'),
'weight' => 40,
......@@ -176,6 +180,7 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
if (CRM_Utils_Array::value('Assigned Activities', $this->_userOptions)) {
// Assigned Activities section
$dashboardElements[] = array(
'class' => 'crm-dashboard-assignedActivities',
'templatePath' => 'CRM/Activity/Page/UserDashboard.tpl',
'sectionTitle' => ts('Your Assigned Activities'),
'weight' => 5,
......@@ -260,5 +265,4 @@ class CRM_Contact_Page_View_UserDashBoard extends CRM_Core_Page {
);
return self::$_links;
}
}
}
\ No newline at end of file
......@@ -25,7 +25,7 @@
*}
<table class="dashboard-elements">
{if $showGroup}
<tr>
<tr class="crm-dashboard-groups">
<td>
<div class="header-dark">
{ts}Your Group(s){/ts}
......@@ -37,7 +37,7 @@
{/if}
{foreach from=$dashboardElements item=element}
<tr>
<tr{if isset($element.class)} class="{$element.class}"{/if}>
<td>
<div class="header-dark">{$element.sectionTitle}</div>
{include file=$element.templatePath}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment