function dxpr_gridstack_update_status_alter in DXPR GridStack 7
@file Code for the DXPR GridStack feature.
Implements hook_update_status_alter().
File
- ./
dxpr_gridstack.module, line 10 - Code for the DXPR GridStack feature.
Code
function dxpr_gridstack_update_status_alter(&$projects) {
if (isset($projects['dxpr_gridstack']) && isset($projects['dxpr_gridstack']['title'])) {
$projects['dxpr_gridstack']['title'] .= ' ' . t('on dxpr.com. Click for more info.');
}
}