diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-08 10:35:43 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-08 10:35:43 +0000 |
commit | b78a990270fe41d582ae22b7f42df292428ec74b (patch) | |
tree | 9dcece10ab0e1a5c8e012ac7ccb5d4db71fec4ac /modules/system | |
parent | 0ab0b1d65f494dbef7f2152b789c721711000001 (diff) | |
download | brdo-b78a990270fe41d582ae22b7f42df292428ec74b.tar.gz brdo-b78a990270fe41d582ae22b7f42df292428ec74b.tar.bz2 |
#207569 by ScoutBaker (minor code style): clean up @see usage in phpdoc blocks
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.admin.inc | 34 | ||||
-rw-r--r-- | modules/system/system.module | 8 |
2 files changed, 21 insertions, 21 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 027f9b0f6..a355a7fa7 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -148,7 +148,7 @@ function system_settings_overview() { * Form builder; This function allows selection of the theme to show in administration sections. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_admin_theme_settings() { $themes = system_theme_data(); @@ -181,7 +181,7 @@ function system_admin_theme_settings() { * Menu callback; displays a listing of all themes. * * @ingroup forms - * @see system_themes_form_submit(). + * @see system_themes_form_submit() */ function system_themes_form() { @@ -318,7 +318,7 @@ function system_themes_form_submit($form, &$form_state) { * @return * The form structure. * @ingroup forms - * @see system_theme_settings_submit(). + * @see system_theme_settings_submit() */ function system_theme_settings(&$form_state, $key = '') { $directory_path = file_directory_path(); @@ -600,8 +600,8 @@ function _system_is_incompatible(&$incompatible, $files, $file) { * @param $form_state * An associative array containing the current state of the form. * @ingroup forms - * @see theme_system_modules(). - * @see system_modules_submit(). + * @see theme_system_modules() + * @see system_modules_submit() * @return * The form array. */ @@ -978,8 +978,8 @@ function system_module_build_dependencies($modules, $form_values) { * Builds a form of currently disabled modules. * * @ingroup forms - * @see system_modules_uninstall_validate(). - * @see system_modules_uninstall_submit(). + * @see system_modules_uninstall_validate() + * @see system_modules_uninstall_submit() * @param $form_state['values'] * Submitted form values. * @return @@ -1109,7 +1109,7 @@ function system_modules_uninstall_submit($form, &$form_state) { * Form builder; The general site information form. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_site_information_settings() { $form['site_name'] = array( @@ -1189,7 +1189,7 @@ function system_site_information_settings_validate($form, &$form_state) { * Form builder; Configure error reporting settings. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_error_reporting_settings() { @@ -1253,7 +1253,7 @@ function system_logging_overview() { * Form builder; Configure site performance settings. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_performance_settings() { @@ -1371,7 +1371,7 @@ function system_clear_cache_submit(&$form_state, $form) { * Form builder; Configure the site file handling. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_file_system_settings() { @@ -1408,7 +1408,7 @@ function system_file_system_settings() { * Form builder; Configure site image toolkit usage. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_image_toolkit_settings() { $toolkits_available = image_get_available_toolkits(); @@ -1445,7 +1445,7 @@ function system_image_toolkit_settings_validate($form, &$form_state) { * Form builder; Configure how the site handles RSS feeds. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_rss_feeds_settings() { @@ -1471,8 +1471,8 @@ function system_rss_feeds_settings() { * Form builder; Configure the site date and time settings. * * @ingroup forms - * @see system_settings_form(). - * @see system_date_time_settings_submit(). + * @see system_settings_form() + * @see system_date_time_settings_submit() */ function system_date_time_settings() { drupal_add_js(drupal_get_path('module', 'system') .'/system.js', 'module'); @@ -1644,7 +1644,7 @@ function system_date_time_lookup() { * Form builder; Configure the site's maintenance status. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_site_maintenance_settings() { @@ -1670,7 +1670,7 @@ function system_site_maintenance_settings() { * Form builder; Configure Clean URL settings. * * @ingroup forms - * @see system_settings_form(). + * @see system_settings_form() */ function system_clean_url_settings() { $form['clean_url'] = array( diff --git a/modules/system/system.module b/modules/system/system.module index 2b962c7b0..f6b4409ad 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -460,7 +460,7 @@ function system_menu() { 'type' => MENU_CALLBACK, ); // Menu handler to test that drupal_http_request() works locally. - // @see system_check_http_request(). + // @see system_check_http_request() $items['admin/reports/request-test'] = array( 'title' => 'Request test', 'page callback' => 'printf', @@ -1009,7 +1009,7 @@ function system_initialize_theme_blocks($theme) { * Add default buttons to a form and set its prefix. * * @ingroup forms - * @see system_settings_form_submit + * @see system_settings_form_submit() * @param $form * An associative array containing the structure of the form. * @return @@ -1344,7 +1344,7 @@ function system_actions_manage() { /** * Define the form for the actions overview page. * - * @see system_actions_manage_form_submit + * @see system_actions_manage_form_submit() * @ingroup forms * @param $form_state * An associative array containing the current state of the form; not used. @@ -1500,7 +1500,7 @@ function system_actions_configure_submit($form, &$form_state) { * Create the form for confirmation of deleting an action. * * @ingroup forms - * @see system_actions_delete_form_submit + * @see system_actions_delete_form_submit() */ function system_actions_delete_form($form_state, $action) { |