You are here

function encrypt_config_edit_title in Encrypt 7.3

Same name and namespace in other branches
  1. 7.2 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 635
Main Encrypt Drupal File

Code

function encrypt_config_edit_title($config) {
  return $config['label'];
}