diff options
Diffstat (limited to 'modules/system/theme.api.php')
-rw-r--r-- | modules/system/theme.api.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/system/theme.api.php b/modules/system/theme.api.php index 2284a7c76..7fee81cb6 100644 --- a/modules/system/theme.api.php +++ b/modules/system/theme.api.php @@ -1,5 +1,4 @@ <?php -// $Id$ /** * @defgroup themeable Default theme implementations @@ -100,6 +99,8 @@ function hook_form_system_theme_settings_alter(&$form, &$form_state) { * It is called for all invocations of theme(), to allow modules to add to * or override variables for all theme hooks. * + * For more detailed information, see theme(). + * * @param $variables * The variables array (modify in place). * @param $hook @@ -146,6 +147,8 @@ function hook_preprocess(&$variables, $hook) { * hook. It should only be used if a module needs to override or add to the * theme preprocessing for a theme hook it didn't define. * + * For more detailed information, see theme(). + * * @param $variables * The variables array (modify in place). */ @@ -162,6 +165,8 @@ function hook_preprocess_HOOK(&$variables) { * It is called for all invocations of theme(), to allow modules to add to * or override variables for all theme hooks. * + * For more detailed information, see theme(). + * * @param $variables * The variables array (modify in place). * @param $hook @@ -188,6 +193,8 @@ function hook_process(&$variables, $hook) { * hook. It should only be used if a module needs to override or add to the * theme processing for a theme hook it didn't define. * + * For more detailed information, see theme(). + * * @param $variables * The variables array (modify in place). */ |