diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-26 17:14:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-26 17:14:46 +0000 |
commit | d428fe37b91d9fb04b62d19d8ce04da32a1ac96c (patch) | |
tree | 560f70b5053c1663aecc62df18ffb3ab30aabcfb /modules/system/system.api.php | |
parent | 94d0be55b4580086b214f4abbf33858e3f2535ba (diff) | |
download | brdo-d428fe37b91d9fb04b62d19d8ce04da32a1ac96c.tar.gz brdo-d428fe37b91d9fb04b62d19d8ce04da32a1ac96c.tar.bz2 |
- Patch #681538 by aspilicious, jhodgdon, trevjs: fixed possibly broken @see also links.
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 6ff9be0ec..d248e3be9 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -503,6 +503,7 @@ function hook_exit($destination = NULL) { * * @param $javascript * An array of all JavaScript being presented on the page. + * * @see drupal_add_js() * @see drupal_get_js() * @see drupal_js_defaults() @@ -622,6 +623,7 @@ function hook_library_alter(&$libraries, $module) { * * @param $css * An array of all CSS items (files and inline CSS) being requested on the page. + * * @see drupal_add_css() * @see drupal_get_css() */ @@ -635,6 +637,7 @@ function hook_css_alter(&$css) { * * @param $commands * An array of all commands that will be sent to the user. + * * @see ajax_render() */ function hook_ajax_render_alter($commands) { @@ -778,7 +781,7 @@ function hook_form_alter(&$form, &$form_state, $form_id) { * @param $form_state * A keyed array containing the current state of the form. * - * @see drupal_prepare_form(). + * @see drupal_prepare_form() */ function hook_form_FORM_ID_alter(&$form, &$form_state) { // Modification for the form with the given form ID goes here. For example, if @@ -2739,7 +2742,7 @@ function hook_actions_delete($aid) { * Called by actions_list() to allow modules to alter the return values from * implementations of hook_action_info(). * - * @see trigger_example_action_info_alter(). + * @see trigger_example_action_info_alter() */ function hook_action_info_alter(&$actions) { $actions['node_unpublish_action']['label'] = t('Unpublish and remove from public view.'); |