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

This commit is contained in:
Pantheon Automation 2016-06-02 15:56:09 -07:00 committed by Greg Anderson
parent 9eae24d844
commit 28556d630e
1322 changed files with 6699 additions and 2064 deletions

View file

@ -46,4 +46,5 @@ class CloseDialogCommand implements CommandInterface {
'persist' => $this->persist,
);
}
}

View file

@ -16,4 +16,5 @@ interface CommandInterface {
* Return an array to be run through json_encode and sent to the client.
*/
public function render();
}

View file

@ -48,7 +48,7 @@ class DataCommand implements CommandInterface {
* A CSS selector for the elements to which the data will be attached.
* @param string $name
* The key of the data to be attached to elements matched by the selector.
* @param type $value
* @param mixed $value
* The value of the data to be attached to elements matched by the selector.
*/
public function __construct($selector, $name, $value) {

View file

@ -33,4 +33,5 @@ class OpenModalDialogCommand extends OpenDialogCommand {
$dialog_options['modal'] = TRUE;
parent::__construct('#drupal-modal', $title, $content, $dialog_options, $settings);
}
}

View file

@ -29,7 +29,6 @@ class RemoveCommand implements CommandInterface {
* Constructs a RemoveCommand object.
*
* @param string $selector
*
*/
public function __construct($selector) {
$this->selector = $selector;

View file

@ -23,4 +23,5 @@ class SetDialogTitleCommand extends SetDialogOptionCommand {
$this->optionName = 'title';
$this->optionValue = $title;
}
}