function encrypt_config_edit_title in Encrypt 7.2
Same name and namespace in other branches
- 7.3 encrypt.module \encrypt_config_edit_title()
Title callback for the configuration edit page.
Parameters
string $config: The machine-readable name of the configuration being edited.
Return value
string The human-friendly label of the requested configuration.
1 string reference to 'encrypt_config_edit_title'
- encrypt_menu in ./
encrypt.module - Implements hook_menu().
File
- ./
encrypt.module, line 636 - Main Encrypt Drupal File.
Code
function encrypt_config_edit_title($config) {
return $config['label'];
}