You are here

function hook_skinr_config in Skinr 8.2

Same name and namespace in other branches
  1. 6.2 docs/docs.php \hook_skinr_config()
  2. 7.2 skinr.api.php \hook_skinr_config()

Configure Skinr for this module.

This hook should be placed in MODULENAME.skinr.inc and it will be auto-loaded. This must either be in the same directory as the .module file or in a subdirectory named 'includes'.

Return value

An array of element types this module supports.

Related topics

File

./skinr.api.php, line 32
This file contains no working PHP code; it exists to provide additional documentation for doxygen as well as to document hooks in the standard Drupal manner.

Code

function hook_skinr_config() {
  return array(
    'block',
  );
}