diff options
Diffstat (limited to 'app/Module/CkeditorModule.php')
| -rw-r--r-- | app/Module/CkeditorModule.php | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/app/Module/CkeditorModule.php b/app/Module/CkeditorModule.php index 549ec2630a..0b92fc17e9 100644 --- a/app/Module/CkeditorModule.php +++ b/app/Module/CkeditorModule.php @@ -20,14 +20,19 @@ use Fisharebest\Webtrees\I18N; /** * Class CkeditorModule */ -class CkeditorModule extends AbstractModule { - /** {@inheritdoc} */ - public function getTitle() { - return /* I18N: Name of a module. CKEditor is a trademark. Do not translate it? http://ckeditor.com */ I18N::translate('CKEditor™'); - } +class CkeditorModule extends AbstractModule +{ + /** {@inheritdoc} */ + public function getTitle() + { + return /* I18N: Name of a module. CKEditor is a trademark. Do not translate it? http://ckeditor.com */ + I18N::translate('CKEditor™'); + } - /** {@inheritdoc} */ - public function getDescription() { - return /* I18N: Description of the “CKEditor” module. WYSIWYG = “what you see is what you get” */ I18N::translate('Allow other modules to edit text using a “WYSIWYG” editor, instead of using HTML codes.'); - } + /** {@inheritdoc} */ + public function getDescription() + { + return /* I18N: Description of the “CKEditor” module. WYSIWYG = “what you see is what you get” */ + I18N::translate('Allow other modules to edit text using a “WYSIWYG” editor, instead of using HTML codes.'); + } } |
