You are here

function shorten_mobile_codes_settings_alter in Mobile Codes 6.2

Same name and namespace in other branches
  1. 7.2 includes/shorten.inc \shorten_mobile_codes_settings_alter()

Implements hook_mobile_codes_settings_alter() on behalf of shorten.module.

File

includes/shorten.inc, line 10
Shorten module integration.

Code

function shorten_mobile_codes_settings_alter($settings) {
  $settings['url']['shorten'] = array(
    'label' => t('Shorten URL'),
    'description' => t('Create a short URL with the Shorten module - !configure', array(
      '!configure' => l(t('configure'), 'admin/settings/shorten'),
    )),
    'weight' => 10,
  );
}