| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- /**
- * @module core/contextplugin
- */
- import ObservableMixin from '@ckeditor/ckeditor5-utils/src/observablemixin';
- import mix from '@ckeditor/ckeditor5-utils/src/mix';
- /**
- * The base class for {@link module:core/context~Context} plugin classes.
- *
- * @implements module:core/plugin~PluginInterface
- * @mixes module:utils/observablemixin~ObservableMixin
- */
- export default class ContextPlugin {
- /**
- * Creates a new plugin instance.
- *
- * @param {module:core/context~Context|module:core/editor/editor~Editor} context
- */
- constructor( context ) {
- /**
- * The context instance.
- *
- * @readonly
- * @type {module:core/context~Context|module:core/editor/editor~Editor}
- */
- this.context = context;
- }
- /**
- * @inheritDoc
- */
- destroy() {
- this.stopListening();
- }
- /**
- * Static property which marks plugin as an allowed to be use directly by a {@link module:core/context~Context}.
- *
- * @returns {Boolean}
- */
- static get isContextPlugin() {
- return true;
- }
- }
- mix( ContextPlugin, ObservableMixin );
|