You are here

themekey.api.php in ThemeKey 7.3

Same filename and directory in other branches
  1. 7 docs/themekey.api.php
  2. 7.2 docs/themekey.api.php

ThemeKey API documentation

File

docs/themekey.api.php
View source
<?php

/**
 * @file
 *   ThemeKey API documentation
 */

/**
 * By Implementing hook_themekey_properties() it's
 * possible to add new properties to ThemeKey.
 *
 * Two assign a value to a property during a page request
 * you have three possibilities:
 * 1. Provide a mapping function from one property
 *    to another and tell ThemeKey about it using this hook.
 * 2. Implement hook_themekey_global().
 * 3. Implement hook_themekey_paths().
 *
 * There's an example implementation of this hook,
 * @see themekey_example_themekey_properties()
 *
 * @return
 *   An array of ThemeKey properties and mapping functions:
 *     array of ThemeKey property attributes:
 *       key:   namespace:property
 *       value: array(
 *                description => Readable name of property (required)
 *                validator   => Callback function to validate a rule starting with that property (optional)
 *                               TODO: describe validator arguments and return value
 *                file        => File that provides the validator function (optional)
 *                path        => Alternative path relative to dupal's doc root to load the file (optional)
 *                static      => true/false, static properties don't occur in properties drop down
 *                               and have fixed operator and value (optional)
 *                page cache  => Level of page caching support:
 *                               - THEMEKEY_PAGECACHE_SUPPORTED
 *                               - THEMEKEY_PAGECACHE_UNSUPPORTED
 *                               - THEMEKEY_PAGECACHE_TIMEBASED
 *                               Default is THEMEKEY_PAGECACHE_UNSUPPORTED (optional)
 *              )
 *     array of mapping functions
 *       key:    none (indexed)
 *       value: array(
 *                src       => Source property path (required)
 *                dst       => Destination property path (required)
 *                callback  => Mapping callback (required)
 *                file      => File that provides the callback function (optional)
 *                path      => Alternative path relative to dupal's doc root to load the file (optional)
 *              )
 */
function hook_themekey_properties() {

  // Attributes of properties
  $attributes = array();
  $attributes['example:number_one'] = array(
    'description' => t('Example: always returns "1"'),
    'validator' => 'themekey_example_validator_number_one',
    'file' => 'themekey_example_validators.inc',
    'page cache' => THEMEKEY_PAGECACHE_SUPPORTED,
  );
  $attributes['example:global_one'] = array(
    'description' => t('Example: always returns "1"'),
    'validator' => 'themekey_example_validator_number_one',
    'file' => 'themekey_example_validators.inc',
    'page cache' => THEMEKEY_PAGECACHE_SUPPORTED,
  );
  $attributes['example:path_number'] = array(
    'description' => t('Example: always returns "1"'),
    'validator' => 'themekey_validator_ctype_digit',
    'page cache' => THEMEKEY_PAGECACHE_SUPPORTED,
  );

  // Mapping functions
  $maps = array();
  $maps[] = array(
    'src' => 'system:dummy',
    'dst' => 'example:number_one',
    'callback' => 'themekey_example_dummy2number_one',
    'file' => 'themekey_example_mappers.inc',
  );
  return array(
    'attributes' => $attributes,
    'maps' => $maps,
  );
}

/**
 * Functions implementing hook_themekey_global()
 * set some properties on every page request.
 *
 * So only easy stuff with low time and memory
 * consumtion should be done by
 * implementing hook_themekey_global().
 */
function hook_themekey_global() {
  $parameters = array();
  $parameters['example:global_one'] = "1";
  return $parameters;
}

/**
 * Functions implementing hook_themekey_paths()
 * set some properties on every page request.
 *
 * Using this function you directly map parts of
 * the path to property values.
 */
function hook_themekey_paths() {
  $paths = array();

  // a path like 'example/27/foo will set property example:path_number to '27'
  $paths[] = array(
    'path' => 'example/#example:path_number',
  );
  return $paths;
}

/**
 * By implementing hook_themekey_rebuild() you can trigger own actions when
 * themekey_rebuild() is called.
 */
function hook_themekey_rebuild() {
  module_load_include('inc', 'themekey_css', 'themekey_css_build');
  themekey_css_scan();
}

/**
 * By implementing hook_themekey_ui_author_theme_selected() you can trigger
 * actions based on the user associated with the theme selection.
 *
 * @param int $uid
 *   user id associated with the theme selection
 * @param string $theme
 *   the selected theme
 */
function hook_themekey_ui_author_theme_selected($uid, $theme) {
  global $base_root;
  $cid = $base_root . '/blog/' . $uid;
  cache_clear_all($cid, 'cache_page');
  cache_clear_all($cid . '/', 'cache_page', TRUE);
}

/**
 * By implementing hook_themekey_custom_theme_alter() you can modify
 * ThemeKey's theme selection after the decision has been taken.
 *
 * @param string $custom_theme
 *   selected theme
 * @param array $rules_matched
 *   array of rules matched
 */
function hook_themekey_custom_theme_alter(&$custom_theme, $rules_matched) {
  $rule = reset($rules_matched);
  if ('themekey_simpletest:custom_theme_alter_test' == $rule->property) {
    $custom_theme = 'seven';
  }
}

/**
 * By implementing hook_themekey_disabled_paths() you can specify paths
 * where ThemeKey should not be active.
 */
function themekey_redirect_themekey_disabled_paths() {
  return array(
    'themekey/redirect_callback',
  );
}

Functions

Namesort descending Description
hook_themekey_custom_theme_alter By implementing hook_themekey_custom_theme_alter() you can modify ThemeKey's theme selection after the decision has been taken.
hook_themekey_global Functions implementing hook_themekey_global() set some properties on every page request.
hook_themekey_paths Functions implementing hook_themekey_paths() set some properties on every page request.
hook_themekey_properties By Implementing hook_themekey_properties() it's possible to add new properties to ThemeKey.
hook_themekey_rebuild By implementing hook_themekey_rebuild() you can trigger own actions when themekey_rebuild() is called.
hook_themekey_ui_author_theme_selected By implementing hook_themekey_ui_author_theme_selected() you can trigger actions based on the user associated with the theme selection.
themekey_redirect_themekey_disabled_paths By implementing hook_themekey_disabled_paths() you can specify paths where ThemeKey should not be active.