Update to Drupal 8.1.5. For more information, see https://www.drupal.org/project/drupal/releases/8.1.5

This commit is contained in:
Pantheon Automation 2016-07-07 09:44:38 -07:00 committed by Greg Anderson
parent 13b6ca7cc2
commit 38ba7c357d
342 changed files with 7814 additions and 1534 deletions

View file

@ -17,7 +17,7 @@ use Drupal\Core\Form\FormStateInterface;
* @code
* $form['high_school']['tests_taken'] = array(
* '#type' => 'checkboxes',
* '#options' => array('SAT' => $this->t('SAT'), 'ACT' => $this->t('ACT'))),
* '#options' => array('SAT' => $this->t('SAT'), 'ACT' => $this->t('ACT')),
* '#title' => $this->t('What standardized tests did you take?'),
* ...
* );

View file

@ -12,7 +12,7 @@ namespace Drupal\Core\Render\Element;
* $build['status_messages'] = [
* '#type' => 'status_messages',
* ];
* @end
* @endcode
*
* @RenderElement("status_messages")
*/

View file

@ -64,7 +64,7 @@ interface RenderCacheInterface {
* this array.
*
* @return bool|null
* Returns FALSE if no cache item could be created, NULL otherwise.
* Returns FALSE if no cache item could be created, NULL otherwise.
*
* @see ::get()
*/