You are here

function skinr_ui_edit_title in Skinr 7.2

Same name and namespace in other branches
  1. 6.2 skinr_ui.module \skinr_ui_edit_title()

Menu title callback; sets the title for a skins configuration form page.

Parameters

$module: The module that we're editing settings of.

$element: The element we're editing settings of.

1 string reference to 'skinr_ui_edit_title'
skinr_ui_menu in ./skinr_ui.module
Implements hook_menu().

File

./skinr_ui.module, line 244
Handles Skinr UI functionality allowing users to apply skins to their site.

Code

function skinr_ui_edit_title($module, $element) {
  return t('Skin settings for !module type !element', array(
    '!module' => $module,
    '!element' => $element,
  ));
}