You are here

function bouncer_mobile_codes_settings_alter in Mobile Codes 6.2

Implements hook_mobile_codes_settings_alter() on behalf of bouncer.module.

File

includes/bouncer.inc, line 10
Bouncer module integration.

Code

function bouncer_mobile_codes_settings_alter($settings) {
  $settings['url']['bouncer'] = array(
    'label' => t('Track URL'),
    'description' => t('Track URL with the Bouncer module - !configure', array(
      '!configure' => l(t('configure'), 'admin/settings/bouncer'),
    )),
    'weight' => 5,
  );
}