public function ResponsiveArea::getFile in CKEditor Responsive Plugin 8
Same name and namespace in other branches
- 2.0.x src/Plugin/CKEditorPlugin/ResponsiveArea.php \Drupal\ckeditor_responsive_plugin\Plugin\CKEditorPlugin\ResponsiveArea::getFile()
Returns the Drupal root-relative file path to the plugin JavaScript file.
Note: this does not use a Drupal library because this uses CKEditor's API.
Return value
string|false The Drupal root-relative path to the file, FALSE if an internal plugin.
Overrides CKEditorPluginInterface::getFile
See also
https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_resourceManager....
File
- src/
Plugin/ CKEditorPlugin/ ResponsiveArea.php, line 41
Class
- ResponsiveArea
- Defines the "responsivearea" plugin.
Namespace
Drupal\ckeditor_responsive_plugin\Plugin\CKEditorPluginCode
public function getFile() {
$plugin_path = drupal_get_path('module', 'ckeditor_responsive_plugin');
return $plugin_path . '/js/plugins/responsivearea/plugin.js';
}