You are here

function agreement_type_edit_title in Agreement 7.2

Retrieve the label for the agreement type to display as the page title.

Parameters

array $info: The agreement type info array.

Return value

string The page title.

1 string reference to 'agreement_type_edit_title'
agreement_menu in ./agreement.module
Implements hook_menu().

File

./agreement.module, line 304
Agreement module code - agreement.module.

Code

function agreement_type_edit_title($info) {
  $type = '';
  if (isset($info['type'])) {
    $type = $info['type'];
  }
  return t('Manage Agreement: @type', array(
    '@type' => $type,
  ));
}