Update to Drupal 8.1.0. For more information, see https://www.drupal.org/drupal-8.1.0-release-notes
This commit is contained in:
parent
b11a755ba8
commit
c0a0d5a94c
6920 changed files with 64395 additions and 57312 deletions
|
@ -79,9 +79,9 @@
|
|||
* Web services make it possible for applications and web sites to read and
|
||||
* update information from other web sites. There are several standard
|
||||
* techniques for providing web services, including:
|
||||
* - SOAP: http://en.wikipedia.org/wiki/SOAP SOAP
|
||||
* - XML-RPC: http://en.wikipedia.org/wiki/XML-RPC
|
||||
* - REST: http://en.wikipedia.org/wiki/Representational_state_transfer
|
||||
* - SOAP: http://wikipedia.org/wiki/SOAP
|
||||
* - XML-RPC: http://wikipedia.org/wiki/XML-RPC
|
||||
* - REST: http://wikipedia.org/wiki/Representational_state_transfer
|
||||
* Drupal sites can both provide web services and integrate third-party web
|
||||
* services.
|
||||
*
|
||||
|
@ -254,7 +254,7 @@
|
|||
* - Exporting and importing configuration.
|
||||
*
|
||||
* The file storage format for configuration information in Drupal is
|
||||
* @link http://en.wikipedia.org/wiki/YAML YAML files. @endlink Configuration is
|
||||
* @link http://wikipedia.org/wiki/YAML YAML files. @endlink Configuration is
|
||||
* divided into files, each containing one configuration object. The file name
|
||||
* for a configuration object is equal to the unique name of the configuration,
|
||||
* with a '.yml' extension. The default configuration files for each module are
|
||||
|
@ -1143,7 +1143,7 @@
|
|||
*
|
||||
* A runtime assertion is a statement that is expected to always be true at
|
||||
* the point in the code it appears at. They are tested using PHP's internal
|
||||
* @link http://www.php.net/assert assert() @endlink statement. If an
|
||||
* @link http://php.net/assert assert() @endlink statement. If an
|
||||
* assertion is ever FALSE it indicates an error in the code or in module or
|
||||
* theme configuration files. User-provided configuration files should be
|
||||
* verified with standard control structures at all times, not just checked in
|
||||
|
@ -1957,33 +1957,34 @@ function hook_queue_info_alter(&$queues) {
|
|||
*
|
||||
* @param $message
|
||||
* An array containing the message data. Keys in this array include:
|
||||
* - 'id':
|
||||
* - 'id':
|
||||
* The MailManagerInterface->mail() id of the message. Look at module source
|
||||
* code or MailManagerInterface->mail() for possible id values.
|
||||
* - 'to':
|
||||
* - 'to':
|
||||
* The address or addresses the message will be sent to. The
|
||||
* formatting of this string must comply with RFC 2822.
|
||||
* - 'from':
|
||||
* - 'from':
|
||||
* The address the message will be marked as being from, which is
|
||||
* either a custom address or the site-wide default email address.
|
||||
* - 'subject':
|
||||
* - 'subject':
|
||||
* Subject of the email to be sent. This must not contain any newline
|
||||
* characters, or the email may not be sent properly.
|
||||
* - 'body':
|
||||
* An array of strings containing the message text. The message body is
|
||||
* created by concatenating the individual array strings into a single text
|
||||
* string using "\n\n" as a separator.
|
||||
* - 'headers':
|
||||
* - 'body':
|
||||
* An array of strings or objects that implement
|
||||
* \Drupal\Component\Render\MarkupInterface containing the message text. The
|
||||
* message body is created by concatenating the individual array strings
|
||||
* into a single text string using "\n\n" as a separator.
|
||||
* - 'headers':
|
||||
* Associative array containing mail headers, such as From, Sender,
|
||||
* MIME-Version, Content-Type, etc.
|
||||
* - 'params':
|
||||
* - 'params':
|
||||
* An array of optional parameters supplied by the caller of
|
||||
* MailManagerInterface->mail() that is used to build the message before
|
||||
* hook_mail_alter() is invoked.
|
||||
* - 'language':
|
||||
* - 'language':
|
||||
* The language object used to build the message before hook_mail_alter()
|
||||
* is invoked.
|
||||
* - 'send':
|
||||
* - 'send':
|
||||
* Set to FALSE to abort sending this email message.
|
||||
*
|
||||
* @see \Drupal\Core\Mail\MailManagerInterface::mail()
|
||||
|
@ -2021,7 +2022,9 @@ function hook_mail_alter(&$message) {
|
|||
* string when the hook is invoked.
|
||||
* - body: An array of lines containing the message to be sent. Drupal will
|
||||
* format the correct line endings for you. MailManagerInterface->mail()
|
||||
* sets this to an empty array when the hook is invoked.
|
||||
* sets this to an empty array when the hook is invoked. The array may
|
||||
* contain either strings or objects implementing
|
||||
* \Drupal\Component\Render\MarkupInterface.
|
||||
* - from: The address the message will be marked as being from, which is
|
||||
* set by MailManagerInterface->mail() to either a custom address or the
|
||||
* site-wide default email address when the hook is invoked.
|
||||
|
|
Reference in a new issue