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
229
Merge Requests
229
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
2691c42b
Commit
2691c42b
authored
Jul 24, 2014
by
alexpott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#2299699
by lokeoke | jhodgdon: Some classes need @ingroup added to them.
parent
b2c4388c
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
21 additions
and
0 deletions
+21
-0
core/includes/common.inc
core/includes/common.inc
+1
-0
core/lib/Drupal/Core/Form/FormBase.php
core/lib/Drupal/Core/Form/FormBase.php
+2
-0
core/lib/Drupal/Core/Form/FormBuilder.php
core/lib/Drupal/Core/Form/FormBuilder.php
+2
-0
core/lib/Drupal/Core/Form/FormInterface.php
core/lib/Drupal/Core/Form/FormInterface.php
+2
-0
core/lib/Drupal/Core/Queue/Batch.php
core/lib/Drupal/Core/Queue/Batch.php
+2
-0
core/lib/Drupal/Core/Queue/BatchMemory.php
core/lib/Drupal/Core/Queue/BatchMemory.php
+2
-0
core/lib/Drupal/Core/Queue/DatabaseQueue.php
core/lib/Drupal/Core/Queue/DatabaseQueue.php
+2
-0
core/lib/Drupal/Core/Queue/Memory.php
core/lib/Drupal/Core/Queue/Memory.php
+2
-0
core/lib/Drupal/Core/Queue/QueueInterface.php
core/lib/Drupal/Core/Queue/QueueInterface.php
+2
-0
core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
+2
-0
core/modules/file/file.module
core/modules/file/file.module
+2
-0
No files found.
core/includes/common.inc
View file @
2691c42b
...
@@ -310,6 +310,7 @@ function drupal_get_feeds() {
...
@@ -310,6 +310,7 @@ function drupal_get_feeds() {
* not available, the current path.
* not available, the current path.
*
*
* @see current_path()
* @see current_path()
* @ingroup form_api
*/
*/
function
drupal_get_destination
()
{
function
drupal_get_destination
()
{
$destination
=
&
drupal_static
(
__FUNCTION__
);
$destination
=
&
drupal_static
(
__FUNCTION__
);
...
...
core/lib/Drupal/Core/Form/FormBase.php
View file @
2691c42b
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
/**
/**
* Provides a base class for forms.
* Provides a base class for forms.
*
* @ingroup form_api
*/
*/
abstract
class
FormBase
implements
FormInterface
,
ContainerInjectionInterface
{
abstract
class
FormBase
implements
FormInterface
,
ContainerInjectionInterface
{
use
StringTranslationTrait
;
use
StringTranslationTrait
;
...
...
core/lib/Drupal/Core/Form/FormBuilder.php
View file @
2691c42b
...
@@ -28,6 +28,8 @@
...
@@ -28,6 +28,8 @@
/**
/**
* Provides form building and processing.
* Provides form building and processing.
*
* @ingroup form_api
*/
*/
class
FormBuilder
implements
FormBuilderInterface
,
FormValidatorInterface
,
FormSubmitterInterface
{
class
FormBuilder
implements
FormBuilderInterface
,
FormValidatorInterface
,
FormSubmitterInterface
{
...
...
core/lib/Drupal/Core/Form/FormInterface.php
View file @
2691c42b
...
@@ -9,6 +9,8 @@
...
@@ -9,6 +9,8 @@
/**
/**
* Provides an interface for a Form.
* Provides an interface for a Form.
*
* @ingroup form_api
*/
*/
interface
FormInterface
{
interface
FormInterface
{
...
...
core/lib/Drupal/Core/Queue/Batch.php
View file @
2691c42b
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
*
*
* Stale items from failed batches are cleaned from the {queue} table on cron
* Stale items from failed batches are cleaned from the {queue} table on cron
* using the 'created' date.
* using the 'created' date.
*
* @ingroup queue
*/
*/
class
Batch
extends
DatabaseQueue
{
class
Batch
extends
DatabaseQueue
{
...
...
core/lib/Drupal/Core/Queue/BatchMemory.php
View file @
2691c42b
...
@@ -15,6 +15,8 @@
...
@@ -15,6 +15,8 @@
* - Ensures FIFO ordering.
* - Ensures FIFO ordering.
* - Allows an item to be repeatedly claimed until it is actually deleted (no
* - Allows an item to be repeatedly claimed until it is actually deleted (no
* notion of lease time or 'expire' date), to allow multipass operations.
* notion of lease time or 'expire' date), to allow multipass operations.
*
* @ingroup queue
*/
*/
class
BatchMemory
extends
Memory
{
class
BatchMemory
extends
Memory
{
...
...
core/lib/Drupal/Core/Queue/DatabaseQueue.php
View file @
2691c42b
...
@@ -11,6 +11,8 @@
...
@@ -11,6 +11,8 @@
/**
/**
* Default queue implementation.
* Default queue implementation.
*
* @ingroup queue
*/
*/
class
DatabaseQueue
implements
ReliableQueueInterface
{
class
DatabaseQueue
implements
ReliableQueueInterface
{
...
...
core/lib/Drupal/Core/Queue/Memory.php
View file @
2691c42b
...
@@ -13,6 +13,8 @@
...
@@ -13,6 +13,8 @@
* This allows "undelayed" variants of processes relying on the Queue
* This allows "undelayed" variants of processes relying on the Queue
* interface. The queue data resides in memory. It should only be used for
* interface. The queue data resides in memory. It should only be used for
* items that will be queued and dequeued within a given page request.
* items that will be queued and dequeued within a given page request.
*
* @ingroup queue
*/
*/
class
Memory
implements
QueueInterface
{
class
Memory
implements
QueueInterface
{
/**
/**
...
...
core/lib/Drupal/Core/Queue/QueueInterface.php
View file @
2691c42b
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
*
*
* Classes implementing this interface will do a best effort to preserve order
* Classes implementing this interface will do a best effort to preserve order
* in messages and to execute them at least once.
* in messages and to execute them at least once.
*
* @ingroup queue
*/
*/
interface
QueueInterface
{
interface
QueueInterface
{
...
...
core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
View file @
2691c42b
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
*
*
* Classes implementing this interface preserve the order of messages and
* Classes implementing this interface preserve the order of messages and
* guarantee that every item will be executed at least once.
* guarantee that every item will be executed at least once.
*
* @ingroup queue
*/
*/
interface
ReliableQueueInterface
extends
QueueInterface
{
interface
ReliableQueueInterface
extends
QueueInterface
{
}
}
core/modules/file/file.module
View file @
2691c42b
...
@@ -1813,6 +1813,8 @@ function file_icon_map(FileInterface $file) {
...
@@ -1813,6 +1813,8 @@ function file_icon_map(FileInterface $file) {
* @return
* @return
* A multidimensional array. The keys are field_name, entity_type,
* A multidimensional array. The keys are field_name, entity_type,
* entity_id and the value is an entity referencing this file.
* entity_id and the value is an entity referencing this file.
*
* @ingroup file
*/
*/
function
file_get_file_references
(
FileInterface
$file
,
FieldDefinitionInterface
$field
=
NULL
,
$age
=
EntityStorageInterface
::
FIELD_LOAD_REVISION
,
$field_type
=
'file'
)
{
function
file_get_file_references
(
FileInterface
$file
,
FieldDefinitionInterface
$field
=
NULL
,
$age
=
EntityStorageInterface
::
FIELD_LOAD_REVISION
,
$field_type
=
'file'
)
{
$references
=
&
drupal_static
(
__FUNCTION__
,
array
());
$references
=
&
drupal_static
(
__FUNCTION__
,
array
());
...
...
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