You are here

function _maxlength_admin_settings in Maxlength 5.2

Same name and namespace in other branches
  1. 5 maxlength.module \_maxlength_admin_settings()
  2. 6 maxlength.module \_maxlength_admin_settings()
1 string reference to '_maxlength_admin_settings'
maxlength_menu in ./maxlength.module
Implementation of hook_menu().

File

./maxlength.module, line 52

Code

function _maxlength_admin_settings() {
  $form = array();
  $form['contact_information'] = array(
    '#value' => t('This page is now deprecated, check the edit page of the relevant content type to edit its settings.'),
  );
  return system_settings_form($form);
}