Index: modules/system/system.api.php =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.api.php,v retrieving revision 1.103 diff -u -p -r1.103 system.api.php --- modules/system/system.api.php 15 Nov 2009 08:48:39 -0000 1.103 +++ modules/system/system.api.php 15 Nov 2009 17:05:57 -0000 @@ -1672,6 +1672,8 @@ function hook_file_url_alter(&$uri) { * - REQUIREMENT_OK: The requirement is satisfied. * - REQUIREMENT_WARNING: The requirement failed with a warning. * - REQUIREMENT_ERROR: The requirement failed with an error. + * + * @ingroup hooks_file_module_install */ function hook_requirements($phase) { $requirements = array(); @@ -1740,6 +1742,8 @@ function hook_requirements($phase) { * A schema definition structure array. For each element of the * array, the key is a table name and the value is a table structure * definition. + * + * @ingroup hooks_file_module_install */ function hook_schema() { $schema['node'] = array( @@ -1895,6 +1899,8 @@ function hook_query_TAG_alter(QueryAlter * * @see hook_uninstall() * @see hook_schema() + * + * @ingroup hooks_file_module_install */ function hook_install() { // Populate the default {node_access} record. @@ -1972,6 +1978,8 @@ function hook_install() { * Optionally update hooks may return a translated string that will be displayed * to the user. If no message is returned, no message will be presented to the * user. + * + * @ingroup hooks_file_module_install */ function hook_update_N(&$sandbox) { // For non-multipass updates, the signature can simply be; @@ -2033,6 +2041,8 @@ function hook_update_N(&$sandbox) { * mymodule.install. * * @see hook_update_N() + * + * @ingroup hooks_file_module_install */ function hook_update_last_removed() { // We've removed the 5.x-1.x version of mymodule, including database updates. @@ -2056,6 +2066,8 @@ function hook_update_last_removed() { * * @see hook_install() * @see hook_schema() + * + * @ingroup hooks_file_module_install */ function hook_uninstall() { variable_del('upload_file_types'); @@ -2065,6 +2077,8 @@ function hook_uninstall() { * Perform necessary actions after module is enabled. * * The hook is called everytime module is enabled. + * + * @ingroup hooks_file_module_install */ function hook_enable() { mymodule_cache_rebuild(); @@ -2074,6 +2088,8 @@ function hook_enable() { * Perform necessary actions before module is disabled. * * The hook is called everytime module is disabled. + * + * @ingroup hooks_file_module_install */ function hook_disable() { mymodule_cache_rebuild();