You are here

function google_adwords_admin_settings in Google AdWords Conversion Tracking 6

Same name and namespace in other branches
  1. 8 google_adwords.admin.inc \google_adwords_admin_settings()
  2. 7.2 google_adwords.admin.inc \google_adwords_admin_settings()

Implementation of hook_admin_settings() for configuring the module

1 string reference to 'google_adwords_admin_settings'
google_adwords_menu in ./google_adwords.module

File

./google_adwords.admin.inc, line 6

Code

function google_adwords_admin_settings(&$form_state) {
  $form['conversion'] = array(
    '#type' => 'fieldset',
    '#title' => t('General Conversion settings'),
    '#collapsible' => FALSE,
  );
  $form['conversion']['google_adwords_conversion_id'] = array(
    '#type' => 'textfield',
    '#title' => t('Conversion ID'),
    '#default_value' => variable_get('google_adwords_conversion_id', ''),
    '#size' => 15,
    '#maxlength' => 255,
    '#required' => TRUE,
  );
  $form['conversion']['google_adwords_conversion_language'] = array(
    '#type' => 'textfield',
    '#title' => t('Conversion Language'),
    '#default_value' => variable_get('google_adwords_conversion_language', 'en'),
    '#size' => 15,
    '#maxlength' => 255,
    '#required' => TRUE,
  );
  $form['conversion']['google_adwords_conversion_format'] = array(
    '#type' => 'select',
    '#title' => t('Conversion Format'),
    '#default_value' => variable_get('google_adwords_conversion_format', '2'),
    '#options' => _google_adwords_conversion_formats(),
    '#required' => TRUE,
  );
  $form['conversion']['google_adwords_conversion_color'] = array(
    '#type' => 'textfield',
    '#title' => t('Conversion Color'),
    '#default_value' => variable_get('google_adwords_conversion_color', 'FFFFFF'),
    '#size' => 10,
    '#maxlength' => 10,
    '#required' => TRUE,
  );
  $form['conversion']['google_adwords_external_script'] = array(
    '#type' => 'textfield',
    '#title' => t('External JavaScript'),
    '#default_value' => variable_get('google_adwords_external_script', 'https://www.googleadservices.com/pagead/conversion.js'),
    '#size' => 80,
    '#maxlength' => 255,
    '#required' => TRUE,
  );
  $form['conversion']['roles'] = array(
    '#type' => 'fieldset',
    '#title' => t('User Role Tracking'),
    '#collapsible' => TRUE,
    '#description' => t('Define what user roles should be tracked.'),
  );

  // Render the role overview.
  $roles = user_roles();
  foreach ($roles as $rid => $name) {
    $form['conversion']['roles']["google_adwords_track_{$rid}"] = array(
      '#type' => 'checkbox',
      '#title' => t($name),
      '#default_value' => variable_get("google_adwords_track_{$rid}", FALSE),
    );
  }
  $form['conversion']['google_adwords_conversion_pages'] = array(
    '#type' => 'textarea',
    '#title' => t('Label | Pages'),
    '#default_value' => variable_get('google_adwords_conversion_pages', ''),
    '#description' => t("Enter one entry per line seperated with a '|', in the format: <em>label|path</em>. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array(
      '%blog' => 'blog',
      '%blog-wildcard' => 'blog/*',
      '%front' => '<front>',
    )),
  );
  return system_settings_form($form);
}