You are here

function record_shorten_views_handler_field_hostname::options_form in Shorten URLs 7.2

Same name and namespace in other branches
  1. 8 modules/record_shorten/record_shorten_views_handler_field_hostname.inc \record_shorten_views_handler_field_hostname::options_form()
  2. 6 record_shorten_views_handler_field_hostname.inc \record_shorten_views_handler_field_hostname::options_form()
  3. 7 record_shorten_views_handler_field_hostname.inc \record_shorten_views_handler_field_hostname::options_form()

Default options form provides the label widget that all fields should have.

Overrides views_handler_field::options_form

File

./record_shorten_views_handler_field_hostname.inc, line 13
A Views field handler for users' IP address.

Class

record_shorten_views_handler_field_hostname
Restricts access to viewing the IP address field. There doesn't seem to be a standard for what permissions are necessary.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['notice'] = array(
    '#value' => '<p class="form-item"><strong>' . t('Users must have both the "administer users" and "access site reports" permission to view this field.') . '</strong></p>',
    '#weight' => -10,
  );
}