You are here

function sooperthemes_gridstack_update_status_alter in Sooperthemes GridStack 7

@file Code for the SooperThemes GridStack feature.

Implements hook_update_status_alter().

File

./sooperthemes_gridstack.module, line 10
Code for the SooperThemes GridStack feature.

Code

function sooperthemes_gridstack_update_status_alter(&$projects) {
  if (isset($projects['sooperthemes_gridstack']) && isset($projects['sooperthemes_gridstack']['title'])) {
    $projects['sooperthemes_gridstack']['title'] .= ' ' . t('on sooperthemes.com. Click for more info.');
  }
}