You are here

function hook_skinr_api in Skinr 6

Same name and namespace in other branches
  1. 6.2 docs/docs.php \hook_skinr_api()

Register Skinr API information. This is required for your module to have its include files loaded.

The full documentation for this hook is in the advanced help.

Related topics

6 functions implement hook_skinr_api()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

block_skinr_api in includes/handlers.inc
comment_skinr_api in includes/handlers.inc
node_skinr_api in includes/handlers.inc
panels_skinr_api in includes/handlers.inc
skinr_skinr_api in includes/handlers.inc
Implementation of hook_skinr_api().

... See full list

1 invocation of hook_skinr_api()
skinr_get_module_apis in ./skinr.module
Get a list of modules that support skinr.

File

docs/docs.php, line 100
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_api() {
  return array(
    'api' => 1,
    'path' => drupal_get_path('module', 'modulename'),
  );
}