Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
315
Merge Requests
315
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
467a8252
Commit
467a8252
authored
May 17, 2012
by
jhodgdon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#1358944
by wulff, Désiré: Fix ingroup/addtogroup syntax
parent
25713f0b
Changes
29
Hide whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
54 additions
and
54 deletions
+54
-54
core/includes/bootstrap.inc
core/includes/bootstrap.inc
+2
-2
core/includes/common.inc
core/includes/common.inc
+1
-1
core/includes/database.inc
core/includes/database.inc
+2
-2
core/includes/gettext.inc
core/includes/gettext.inc
+1
-1
core/includes/menu.inc
core/includes/menu.inc
+5
-5
core/includes/pager.inc
core/includes/pager.inc
+1
-1
core/includes/schema.inc
core/includes/schema.inc
+2
-2
core/includes/theme.inc
core/includes/theme.inc
+3
-3
core/includes/update.inc
core/includes/update.inc
+1
-1
core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
+2
-2
core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
+2
-2
core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
+2
-2
core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
+2
-2
core/lib/Drupal/Core/Database/Driver/pgsql/Select.php
core/lib/Drupal/Core/Database/Driver/pgsql/Select.php
+2
-2
core/modules/block/block.install
core/modules/block/block.install
+1
-1
core/modules/comment/comment.install
core/modules/comment/comment.install
+1
-1
core/modules/field/field.api.php
core/modules/field/field.api.php
+10
-10
core/modules/field/field.attach.inc
core/modules/field/field.attach.inc
+2
-2
core/modules/field/field.info.inc
core/modules/field/field.info.inc
+1
-1
core/modules/field/field.module
core/modules/field/field.module
+1
-1
core/modules/field_ui/field_ui.api.php
core/modules/field_ui/field_ui.api.php
+1
-1
core/modules/filter/filter.module
core/modules/filter/filter.module
+1
-1
core/modules/locale/locale.install
core/modules/locale/locale.install
+1
-1
core/modules/node/node.install
core/modules/node/node.install
+1
-1
core/modules/openid/openid.install
core/modules/openid/openid.install
+1
-1
core/modules/system/image.gd.inc
core/modules/system/image.gd.inc
+2
-2
core/modules/system/system.install
core/modules/system/system.install
+1
-1
core/modules/taxonomy/taxonomy.module
core/modules/taxonomy/taxonomy.module
+1
-1
core/modules/user/user.install
core/modules/user/user.install
+1
-1
No files found.
core/includes/bootstrap.inc
View file @
467a8252
...
...
@@ -2814,7 +2814,7 @@ function ip_address() {
}
/**
* @
in
group registry
* @
addto
group registry
* @{
*/
...
...
@@ -3049,7 +3049,7 @@ function registry_update() {
}
/**
* @} End of "
in
group registry".
* @} End of "
addto
group registry".
*/
/**
...
...
core/includes/common.inc
View file @
467a8252
...
...
@@ -1020,7 +1020,7 @@ function drupal_http_request($url, array $options = array()) {
return
$result
;
}
/**
* @} End of "
HTTP
handling".
* @} End of "
defgroup http_
handling".
*/
/**
...
...
core/includes/database.inc
View file @
467a8252
...
...
@@ -574,7 +574,7 @@ function db_condition($conjunction) {
/**
* @
in
group schemaapi
* @
addto
group schemaapi
* @{
*/
...
...
@@ -891,7 +891,7 @@ function db_change_field($table, $field, $field_new, $spec, $keys_new = array())
}
/**
* @} End of "
in
group schemaapi".
* @} End of "
addto
group schemaapi".
*/
/**
...
...
core/includes/gettext.inc
View file @
467a8252
...
...
@@ -1127,5 +1127,5 @@ function _locale_export_wrap($str, $len) {
}
/**
* @} End of "
locale-api-import-export"
* @} End of "
defgroup locale-api-import-export".
*/
core/includes/menu.inc
View file @
467a8252
...
...
@@ -121,7 +121,7 @@
const
MENU_IS_LOCAL_ACTION
=
0x0100
;
/**
* @} End of "
Menu
flags".
* @} End of "
defgroup menu_
flags".
*/
/**
...
...
@@ -186,7 +186,7 @@
define
(
'MENU_LOCAL_ACTION'
,
MENU_IS_LOCAL_TASK
|
MENU_IS_LOCAL_ACTION
|
MENU_VISIBLE_IN_BREADCRUMB
);
/**
* @} End of "
Menu item
types".
* @} End of "
defgroup menu_item_
types".
*/
/**
...
...
@@ -214,7 +214,7 @@
const
MENU_CONTEXT_INLINE
=
0x0002
;
/**
* @} End of "
Menu context
types".
* @} End of "
defgroup menu_context_
types".
*/
/**
...
...
@@ -244,7 +244,7 @@
const
MENU_SITE_ONLINE
=
5
;
/**
* @} End of "
Menu status
codes".
* @} End of "
defgroup menu_status_
codes".
*/
/**
...
...
@@ -266,7 +266,7 @@
/**
* @} End of "
Menu tree
parameters".
* @} End of "
defgroup menu_tree_
parameters".
*/
/**
...
...
core/includes/pager.inc
View file @
467a8252
...
...
@@ -643,7 +643,7 @@ function theme_pager_link($variables) {
}
/**
* @} End of "
Pager
pieces".
* @} End of "
defgroup pager
pieces".
*/
/**
...
...
core/includes/schema.inc
View file @
467a8252
...
...
@@ -9,7 +9,7 @@
use
Drupal\Core\Utility\SchemaCache
;
/**
* @
in
group schemaapi
* @
addto
group schemaapi
* @{
*/
...
...
@@ -518,5 +518,5 @@ function drupal_write_record($table, &$record, $primary_keys = array()) {
}
/**
* @} End of "
in
group schemaapi".
* @} End of "
addto
group schemaapi".
*/
core/includes/theme.inc
View file @
467a8252
...
...
@@ -31,7 +31,7 @@
const
MARK_UPDATED
=
2
;
/**
* @} End of "
Content marker
s".
* @} End of "
defgroup content_flag
s".
*/
/**
...
...
@@ -1530,7 +1530,7 @@ function theme_disable($theme_list) {
}
/**
* @
in
group themeable
* @
addto
group themeable
* @{
*/
...
...
@@ -2323,7 +2323,7 @@ function theme_indentation($variables) {
}
/**
* @} End of "
in
group themeable".
* @} End of "
addto
group themeable".
*/
/**
...
...
core/includes/update.inc
View file @
467a8252
...
...
@@ -949,5 +949,5 @@ function update_variables_to_config($config_name, array $variable_map = array())
*/
/**
* @} End of "defgroup update-api-7.x-to-8.x"
* @} End of "defgroup update-api-7.x-to-8.x"
.
*/
core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
View file @
467a8252
...
...
@@ -15,7 +15,7 @@
use
PDOException
;
/**
* @
in
group database
* @
addto
group database
* @{
*/
...
...
@@ -207,5 +207,5 @@ protected function popCommittableTransactions() {
/**
* @} End of "
in
group database".
* @} End of "
addto
group database".
*/
core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
View file @
467a8252
...
...
@@ -16,7 +16,7 @@
use
Exception
;
/**
* @
in
group schemaapi
* @
addto
group schemaapi
* @{
*/
...
...
@@ -541,5 +541,5 @@ public function fieldExists($table, $column) {
}
/**
* @} End of "
in
group schemaapi".
* @} End of "
addto
group schemaapi".
*/
core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
View file @
467a8252
...
...
@@ -15,7 +15,7 @@
use
PDOException
;
/**
* @
in
group database
* @
addto
group database
* @{
*/
...
...
@@ -211,5 +211,5 @@ public function nextId($existing = 0) {
}
/**
* @} End of "
in
group database".
* @} End of "
addto
group database".
*/
core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
View file @
467a8252
...
...
@@ -16,7 +16,7 @@
use
Exception
;
/**
* @
in
group schemaapi
* @
addto
group schemaapi
* @{
*/
...
...
@@ -627,5 +627,5 @@ public function getComment($table, $column = NULL) {
}
/**
* @} End of "
ingroup database
".
* @} End of "
addtogroup schemaapi
".
*/
core/lib/Drupal/Core/Database/Driver/pgsql/Select.php
View file @
467a8252
...
...
@@ -10,7 +10,7 @@
use
Drupal\Core\Database\Query\Select
as
QuerySelect
;
/**
* @
in
group database
* @
addto
group database
* @{
*/
...
...
@@ -107,5 +107,5 @@ public function orderBy($field, $direction = 'ASC') {
}
/**
* @} End of "
in
group database".
* @} End of "
addto
group database".
*/
core/modules/block/block.install
View file @
467a8252
...
...
@@ -267,6 +267,6 @@ function block_update_8001() {
}
/**
* @} End of "addtogroup updates-7.x-to-8.x"
* @} End of "addtogroup updates-7.x-to-8.x"
.
* The next series of updates should start at 9000.
*/
core/modules/comment/comment.install
View file @
467a8252
...
...
@@ -282,6 +282,6 @@ function comment_update_8000() {
}
/**
* @} End of "addtogroup updates-7.x-to-8.x"
* @} End of "addtogroup updates-7.x-to-8.x"
.
* The next series of updates should start at 9000.
*/
core/modules/field/field.api.php
View file @
467a8252
...
...
@@ -678,7 +678,7 @@ function hook_field_is_empty($item, $field) {
}
/**
* @} End of "defgroup field_types"
* @} End of "defgroup field_types"
.
*/
/**
...
...
@@ -960,7 +960,7 @@ function hook_field_widget_error($element, $error, $form, &$form_state) {
/**
* @} End of "defgroup field_widget"
* @} End of "defgroup field_widget"
.
*/
...
...
@@ -1199,11 +1199,11 @@ function hook_field_formatter_view($entity_type, $entity, $field, $instance, $la
}
/**
* @} End of "defgroup field_formatter"
* @} End of "defgroup field_formatter"
.
*/
/**
* @
in
group field_attach
* @
addto
group field_attach
* @{
*/
...
...
@@ -1555,11 +1555,11 @@ function hook_field_attach_delete_bundle($entity_type, $bundle, $instances) {
}
/**
* @} End of "
defgroup field_attach"
* @} End of "
addtogroup field_attach".
*/
/**
* @
in
group field_storage
* @
addto
group field_storage
* @{
*/
...
...
@@ -2392,11 +2392,11 @@ function hook_field_widget_properties_ENTITY_TYPE_alter(&$widget, $context) {
}
/**
* @} End of "
ingroup field_storage"
* @} End of "
addtogroup field_storage".
*/
/**
* @
in
group field_crud
* @
addto
group field_crud
* @{
*/
...
...
@@ -2646,7 +2646,7 @@ function hook_field_storage_purge($entity_type, $entity, $field, $instance) {
}
/**
* @} End of "
ingroup field_crud"
* @} End of "
addtogroup field_crud".
*/
/**
...
...
@@ -2677,5 +2677,5 @@ function hook_field_access($op, $field, $entity_type, $entity, $account) {
}
/**
* @} End of "addtogroup hooks"
* @} End of "addtogroup hooks"
.
*/
core/modules/field/field.attach.inc
View file @
467a8252
...
...
@@ -43,7 +43,7 @@
const
FIELD_STORAGE_INSERT
=
'insert'
;
/**
* @} End of "defgroup field_storage"
* @} End of "defgroup field_storage"
.
*/
/**
...
...
@@ -1344,5 +1344,5 @@ function field_attach_delete_bundle($entity_type, $bundle) {
/**
* @} End of "defgroup field_attach"
* @} End of "defgroup field_attach"
.
*/
core/modules/field/field.info.inc
View file @
467a8252
...
...
@@ -901,5 +901,5 @@ function field_info_storage_settings($type) {
}
/**
* @} End of "defgroup field_info"
* @} End of "defgroup field_info"
.
*/
core/modules/field/field.module
View file @
467a8252
...
...
@@ -1097,7 +1097,7 @@ function template_process_field(&$variables, $hook) {
}
}
/**
* @} End of "defgroup field"
* @} End of "defgroup field"
.
*/
/**
...
...
core/modules/field_ui/field_ui.api.php
View file @
467a8252
...
...
@@ -199,5 +199,5 @@ function hook_field_formatter_settings_summary($field, $instance, $view_mode) {
}
/**
* @} End of "addtogroup field_types"
* @} End of "addtogroup field_types"
.
*/
core/modules/filter/filter.module
View file @
467a8252
...
...
@@ -1693,5 +1693,5 @@ function _filter_html_escape_tips($filter, $format, $long = FALSE) {
}
/**
* @} End of "
Standard
filters".
* @} End of "
defgroup standard_
filters".
*/
core/modules/locale/locale.install
View file @
467a8252
...
...
@@ -542,6 +542,6 @@ function locale_update_8009() {
}
/**
* @} End of "addtogroup updates-7.x-to-8.x"
* @} End of "addtogroup updates-7.x-to-8.x"
.
* The next series of updates should start at 9000.
*/
core/modules/node/node.install
View file @
467a8252
...
...
@@ -558,6 +558,6 @@ function node_update_8002() {
}
/**
* @} End of "addtogroup updates-7.x-to-8.x"
* @} End of "addtogroup updates-7.x-to-8.x"
.
* The next series of updates should start at 9000.
*/
core/modules/openid/openid.install
View file @
467a8252
...
...
@@ -156,5 +156,5 @@ function openid_update_6000() {
}
/**
* @} End of "addtogroup updates-6.x-to-7.x"
* @} End of "addtogroup updates-6.x-to-7.x"
.
*/
core/modules/system/image.gd.inc
View file @
467a8252
...
...
@@ -6,7 +6,7 @@
*/
/**
* @
in
group image
* @
addto
group image
* @{
*/
...
...
@@ -351,5 +351,5 @@ function image_gd_get_info(stdClass $image) {
}
/**
* @} End of "
in
group image".
* @} End of "
addto
group image".
*/
core/modules/system/system.install
View file @
467a8252
...
...
@@ -1866,6 +1866,6 @@ function system_update_8009() {
}
/**
* @} End of "defgroup updates-7.x-to-8.x"
* @} End of "defgroup updates-7.x-to-8.x"
.
* The next series of updates should start at 9000.
*/
core/modules/taxonomy/taxonomy.module
View file @
467a8252
...
...
@@ -1659,5 +1659,5 @@ function taxonomy_taxonomy_term_delete(Term $term) {
}
/**
* @} End of "defgroup taxonomy_index"
* @} End of "defgroup taxonomy_index"
.
*/
core/modules/user/user.install
View file @
467a8252
...
...
@@ -399,5 +399,5 @@ function user_update_8001() {
}
/**
* @} End of "addtogroup updates-7.x-to-8.x"
* @} End of "addtogroup updates-7.x-to-8.x"
.
*/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment