Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3174996
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3174996
Commits
cd524ac2
Commit
cd524ac2
authored
10 years ago
by
Angie Byron
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#2216559
by jhodgdon: Repurpose @defgroup/topic docs for Architecture Overview.
parent
0843922e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/system/core.api.php
+17
-19
17 additions, 19 deletions
core/modules/system/core.api.php
with
17 additions
and
19 deletions
core/modules/system/core.api.php
+
17
−
19
View file @
cd524ac2
...
...
@@ -17,10 +17,10 @@
*
* @section essentials Essential background concepts
*
* - @link architecture Drupal's architecture @endlink
* - @link oo_conventions Object-oriented conventions used in Drupal @endlink
* - @link extending Extending and altering Drupal @endlink
* - @link best_practices Security and best practices @endlink
* - @link info_types Types of information in Drupal @endlink
*
* @section interface User interface
*
...
...
@@ -117,7 +117,7 @@
* Information about the State API.
*
* The State API is one of several methods in Drupal for storing information.
* See @link
architecture Drupal's architecture
topic @endlink for an
* See
the
@link
info_types Information types
topic @endlink for an
* overview of the different types of information.
*
* The basic entry point into the State API is \Drupal::state(), which returns
...
...
@@ -143,7 +143,7 @@
* Information about the Configuration API.
*
* The Configuration API is one of several methods in Drupal for storing
* information. See @link
architecture Drupal's architecture
topic @endlink for
* information. See
the
@link
info_types Information types
topic @endlink for
* an overview of the different types of information. The sections below have
* more information about the configuration API; see
* https://drupal.org/developing/api/8/configuration for more details.
...
...
@@ -164,6 +164,10 @@
* string, Boolean, etc.) and settings can also exist in a nested hierarchy,
* known as a "mapping".
*
* Configuration can also be overridden on a global, per-language, or
* per-module basis. See https://www.drupal.org/node/1928898 for more
* information.
*
* @section sec_yaml Configuration YAML files
* Whether or not configuration files are being used for the active
* configuration storage on a particular site, configuration files are always
...
...
@@ -275,8 +279,8 @@
*
* Entities, in Drupal, are objects that are used for persistent storage of
* content and configuration information. See the
* @link
architecture Drupal's architecture
topic @endlink for an overview of
*
the
different types of information, and the
* @link
info_types Information types
topic @endlink for an overview of
the
* different types of information, and the
* @link config_api Configuration API topic @endlink for more about the
* configuration API.
*
...
...
@@ -976,18 +980,10 @@
*/
/**
* @defgroup
architecture Architecture overview
* @defgroup
info_types Information types
* @{
* Overview of Drupal's architecture for developers.
*
* @todo write this
*
* Additional documentation paragraphs need to be written, and functions,
* classes, and interfaces need to be added to this topic.
* Types of information in Drupal.
*
* Should include: modules, info.yml files, location of files, etc.
*
* @section Types of information in Drupal
* Drupal has several distinct types of information, each with its own methods
* for storage and retrieval:
* - Content: Information meant to be displayed on your site: articles, basic
...
...
@@ -996,7 +992,10 @@
* - Session: Information about individual users' interactions with the site,
* such as whether they are logged in. This is really "state" information, but
* it is not stored the same way so it's a separate type here. Session
* information is managed ...
* information is managed via the session_manager service in Drupal, which
* implements \Drupal\Core\Session\SessionManagerInterface. See the
* @link container Services topic @endlink for more information about
* services.
* - State: Information of a temporary nature, generally machine-generated and
* not human-edited, about the current state of your site. Examples: the time
* when Cron was last run, whether node access permissions need rebuilding,
...
...
@@ -1007,9 +1006,8 @@
* you have defined, etc. See
* @link config_api the Configuration API topic @endlink for more information.
*
* @todo Add something relevant to the list item about sessions.
* @todo Add some information about Settings, the key-value store in general,
* and maybe the cache to this list (not sure if cache belongs here?).
* @see cache
* @see i18n
* @}
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment