You are here

CKEditorAdminSortTrait.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/modules/ckeditor/tests/src/Traits/CKEditorAdminSortTrait.php

File

core/modules/ckeditor/tests/src/Traits/CKEditorAdminSortTrait.php
View source
<?php

namespace Drupal\Tests\ckeditor\Traits;

use Drupal\FunctionalJavascriptTests\SortableTestTrait;

/**
 * Provides callback for simulated CKEditor toolbar configuration change.
 */
trait CKEditorAdminSortTrait {
  use SortableTestTrait;

  /**
   * {@inheritdoc}
   */
  protected function sortableUpdate($item, $from, $to = NULL) {
    $script = <<<JS
(function () {
  // Set backbone model after a DOM change.
  Drupal.ckeditor.models.Model.set('isDirty', true);
})()

JS;
    $options = [
      'script' => $script,
      'args' => [],
    ];
    $this
      ->getSession()
      ->getDriver()
      ->getWebDriverSession()
      ->execute($options);
  }

}

Traits

Namesort descending Description
CKEditorAdminSortTrait Provides callback for simulated CKEditor toolbar configuration change.