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:
parent
9eae24d844
commit
28556d630e
1322 changed files with 6699 additions and 2064 deletions
|
@ -46,4 +46,5 @@ class CloseDialogCommand implements CommandInterface {
|
|||
'persist' => $this->persist,
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -16,4 +16,5 @@ interface CommandInterface {
|
|||
* Return an array to be run through json_encode and sent to the client.
|
||||
*/
|
||||
public function render();
|
||||
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -33,4 +33,5 @@ class OpenModalDialogCommand extends OpenDialogCommand {
|
|||
$dialog_options['modal'] = TRUE;
|
||||
parent::__construct('#drupal-modal', $title, $content, $dialog_options, $settings);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -29,7 +29,6 @@ class RemoveCommand implements CommandInterface {
|
|||
* Constructs a RemoveCommand object.
|
||||
*
|
||||
* @param string $selector
|
||||
*
|
||||
*/
|
||||
public function __construct($selector) {
|
||||
$this->selector = $selector;
|
||||
|
|
|
@ -23,4 +23,5 @@ class SetDialogTitleCommand extends SetDialogOptionCommand {
|
|||
$this->optionName = 'title';
|
||||
$this->optionValue = $title;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue