You are here

jqmulti.admin.inc in jQuery Multi 7

Same filename and directory in other branches
  1. 6 jqmulti.admin.inc

Admin-related functions for the jQuery Multi module.

File

jqmulti.admin.inc
View source
<?php

/**
 * @file
 * Admin-related functions for the jQuery Multi module.
 */

/**
 * Admin form for jQuery Multi module.
 */
function jqmulti_admin_form() {
  $form = array();

  // This will rebuild the files list if they're not cached.
  jqmulti_get_files();
  $version = jqmulti_get_version();
  if (!$version) {

    // no jQuery is available
    $form['jqmulti_version'] = array(
      '#value' => t('No jQuery library could be found. Please add a version of jQuery in the libraries folder (see README.txt for details)'),
    );
    return $form;
  }
  $form['jqmulti_version'] = array(
    '#type' => 'item',
    '#title' => 'jQuery Version',
    '#markup' => t('Using jQuery version %version', array(
      '%version' => $version,
    )),
  );
  $form['jqmulti_load_always'] = array(
    '#type' => 'checkbox',
    '#title' => t('Always load this jQuery library, even if no libraries or files are targeted to it.'),
    '#default_value' => variable_get('jqmulti_load_always', FALSE),
    '#description' => t('Turn this on if you want to use the newer version of jQuery in custom scripts, using the alias provided'),
  );
  $form['jqmulti_load_files_always'] = array(
    '#type' => 'checkbox',
    '#title' => t('Always load libraries assigned to this version of jQuery'),
    '#default_value' => variable_get('jqmulti_load_files_always', FALSE),
    '#description' => t('Turn this on if you want all libraries and files targeted to jqmulti to be loaded on every page.') . '<br />' . t('Otherwise, the files will only be loaded if they have been added using a traditional drupal method, for example with drupal_add_js().') . '<br />' . t('This affects javascript added using the settings below, and using the jqmulti API hooks.'),
  );

  // Find all libraries that are turned on by the hook.
  $available_libraries = jqmulti_get_available_libraries();
  $form['jqmulti_libraries'] = array(
    '#type' => 'checkboxes',
    '#title' => 'Libraries',
    '#options' => $available_libraries,
    '#description' => t('Select libraries to target to the version of jQuery selected above'),
    '#default_value' => variable_get('jqmulti_libraries', array()),
  );

  // Disable the checkboxes for libraries that are enabled by hooks.
  foreach (module_implements('jqmulti_libraries') as $module) {
    $libraries = module_invoke($module, 'jqmulti_libraries');
    if (!empty($libraries)) {
      foreach ($libraries as $library => $options) {

        // Only do this once, in case multiple modules require the same library.
        if (empty($form['jqmulti_libraries'][$library]['#description'])) {
          $form['jqmulti_libraries'][$library]['#default_value'] = TRUE;
          $form['jqmulti_libraries'][$library]['#attributes']['disabled'] = 'disabled';
          $form['jqmulti_libraries'][$library]['#description'] = t('Required by %module', array(
            '%module' => $module,
          ));
        }
        else {
          $form['jqmulti_libraries'][$library]['#description'] .= t(', %module', array(
            '%module' => $module,
          ));
        }
      }
    }
  }
  $form['#submit'][] = 'jqmulti_admin_submit';
  return system_settings_form($form);
}

/**
 * Submit callback for the admin form.
 */
function jqmulti_admin_submit($form, &$form_state) {

  // clear the files cache, so it'll rebuild after new values are saved
  cache_clear_all('jqmulti_files', 'cache');
}

Functions

Namesort descending Description
jqmulti_admin_form Admin form for jQuery Multi module.
jqmulti_admin_submit Submit callback for the admin form.