function hook_skinr_api in Skinr 6.2
Same name and namespace in other branches
- 6 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
8 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.
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'),
'skins' => FALSE,
);
}