You are here

function opigno_statistics_app_group_statistics_page_title_callback in Opigno Statistics App 7

1 string reference to 'opigno_statistics_app_group_statistics_page_title_callback'
opigno_statistics_app_menu in ./opigno_statistics_app.module
Implements hook_menu().

File

includes/group/group.pages.inc, line 10

Code

function opigno_statistics_app_group_statistics_page_title_callback($nid) {
  $node_title = db_query('SELECT group_title FROM {opigno_statistics_group} WHERE group_nid = :nid LIMIT 1', array(
    ':nid' => $nid,
  ))
    ->fetchCol();
  $node_title = $node_title[0];
  return $node_title . ' - ' . t("Statistics");
}