function key_config_edit_title in Key 7.2
Same name and namespace in other branches
- 7.3 key.module \key_config_edit_title()
Title callback for the key configuration edit page.
Parameters
string $config_name: The machine-readable name of 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 159 - Provides the ability to manage keys, which can be used by other modules.
Code
function key_config_edit_title($config) {
return t('Edit @name key', array(
'@name' => $config['label'],
));
}