| 1234567891011121314151617181920212223242526272829 |
- /**
- * @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/restricteddocument
- */
- import Plugin from './plugin';
- import RestrictedDocumentEditing from './restricteddocumentediting';
- import RestrictedDocumentUI from './restricteddocumentui';
- /**
- * @extends module:core/plugin~Plugin
- */
- export default class RestrictedDocument extends Plugin {
- /**
- * @inheritDoc
- */
- static get pluginName() {
- return 'RestrictedDocument';
- }
- static get requires() {
- return [ RestrictedDocumentEditing, RestrictedDocumentUI ];
- }
- }
|