You are here

function key_config_edit_title in Key 7.3

Same name and namespace in other branches
  1. 7.2 key.module \key_config_edit_title()

Title callback for the key configuration edit page.

Parameters

string $config: The configuration being edited.

Return value

string The human-friendly label of the requested configuration.

1 string reference to 'key_config_edit_title'
key_menu in ./key.module
Implements hook_menu().

File

./key.module, line 214
Main Key functionality and hook implementations.

Code

function key_config_edit_title($config) {
  return t('Edit @name key', array(
    '@name' => $config['label'],
  ));
}