function UploadWidget::getFile in CKEditor Upload Image 8
Same name and namespace in other branches
- 8.2 src/Plugin/CKEditorPlugin/UploadWidget.php \Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin\UploadWidget::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/ UploadWidget.php, line 33 - Contains \Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin\UploadWidget.
Class
- UploadWidget
- Defines the "templates" plugin.
Namespace
Drupal\ckeditor_uploadimage\Plugin\CKEditorPluginCode
function getFile() {
$path = 'libraries/ckeditor/plugins/' . $this
->getPluginId() . '/plugin.js';
if (file_exists('profiles/' . drupal_get_profile() . "/{$path}")) {
return 'profiles/' . drupal_get_profile() . "/{$path}";
}
return $path;
}