Merge pull request #22177 from eileenmcnaughton/smarty5
[civicrm-core.git] / ext / ckeditor4 / ckeditor4.php
1 <?php
2
3 require_once 'ckeditor4.civix.php';
4 // phpcs:disable
5 use CRM_Ckeditor4_ExtensionUtil as E;
6 // phpcs:enable
7
8 /**
9 * Implements hook_civicrm_config().
10 *
11 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_config/
12 */
13 function ckeditor4_civicrm_config(&$config) {
14 _ckeditor4_civix_civicrm_config($config);
15 }
16
17 /**
18 * Implements hook_civicrm_xmlMenu().
19 *
20 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_xmlMenu
21 */
22 function ckeditor4_civicrm_xmlMenu(&$files) {
23 _ckeditor4_civix_civicrm_xmlMenu($files);
24 }
25
26 /**
27 * Implements hook_civicrm_install().
28 *
29 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_install
30 */
31 function ckeditor4_civicrm_install() {
32 _ckeditor4_civix_civicrm_install();
33 }
34
35 /**
36 * Implements hook_civicrm_postInstall().
37 *
38 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_postInstall
39 */
40 function ckeditor4_civicrm_postInstall() {
41 _ckeditor4_civix_civicrm_postInstall();
42 }
43
44 /**
45 * Implements hook_civicrm_uninstall().
46 *
47 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_uninstall
48 */
49 function ckeditor4_civicrm_uninstall() {
50 _ckeditor4_civix_civicrm_uninstall();
51 }
52
53 /**
54 * Implements hook_civicrm_enable().
55 *
56 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_enable
57 */
58 function ckeditor4_civicrm_enable() {
59 _ckeditor4_civix_civicrm_enable();
60 }
61
62 /**
63 * Implements hook_civicrm_disable().
64 *
65 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_disable
66 */
67 function ckeditor4_civicrm_disable() {
68 _ckeditor4_civix_civicrm_disable();
69 }
70
71 /**
72 * Implements hook_civicrm_upgrade().
73 *
74 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_upgrade
75 */
76 function ckeditor4_civicrm_upgrade($op, CRM_Queue_Queue $queue = NULL) {
77 return _ckeditor4_civix_civicrm_upgrade($op, $queue);
78 }
79
80 /**
81 * Implements hook_civicrm_managed().
82 *
83 * Generate a list of entities to create/deactivate/delete when this module
84 * is installed, disabled, uninstalled.
85 *
86 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_managed
87 */
88 function ckeditor4_civicrm_managed(&$entities) {
89 _ckeditor4_civix_civicrm_managed($entities);
90 }
91
92 /**
93 * Implements hook_civicrm_caseTypes().
94 *
95 * Generate a list of case-types.
96 *
97 * Note: This hook only runs in CiviCRM 4.4+.
98 *
99 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_caseTypes
100 */
101 function ckeditor4_civicrm_caseTypes(&$caseTypes) {
102 _ckeditor4_civix_civicrm_caseTypes($caseTypes);
103 }
104
105 /**
106 * Implements hook_civicrm_angularModules().
107 *
108 * Generate a list of Angular modules.
109 *
110 * Note: This hook only runs in CiviCRM 4.5+. It may
111 * use features only available in v4.6+.
112 *
113 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_angularModules
114 */
115 function ckeditor4_civicrm_angularModules(&$angularModules) {
116 _ckeditor4_civix_civicrm_angularModules($angularModules);
117 }
118
119 /**
120 * Implements hook_civicrm_entityTypes().
121 *
122 * Declare entity types provided by this module.
123 *
124 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_entityTypes
125 */
126 function ckeditor4_civicrm_entityTypes(&$entityTypes) {
127 _ckeditor4_civix_civicrm_entityTypes($entityTypes);
128 }
129
130 /**
131 * Implements hook_civicrm_themes().
132 */
133 function ckeditor4_civicrm_themes(&$themes) {
134 _ckeditor4_civix_civicrm_themes($themes);
135 }
136
137 function ckeditor4_civicrm_buildForm($formName, $form) {
138 if ($formName === 'CRM_Admin_Form_Preferences_Display') {
139 $form->addElement(
140 'xbutton',
141 'ckeditor_config',
142 CRM_Core_Page::crmIcon('fa-wrench') . ' ' . E::ts('Configure CKEditor 4'),
143 [
144 'type' => 'submit',
145 'class' => 'crm-button',
146 'style' => 'display:inline-block;vertical-align:middle;float:none!important;',
147 'value' => 1,
148 ]
149 );
150 CRM_Core_Region::instance('form-bottom')->add([
151 'template' => 'CRM/Admin/Form/Preferences/Ckeditor.tpl',
152 ]);
153 }
154 }
155
156 function ckeditor4_civicrm_coreResourceList(&$list, $region) {
157 // add wysiwyg editor
158 $editor = \Civi::settings()->get('editor_id');
159 if ($editor == "CKEditor") {
160 CRM_Ckeditor4_Form_CKEditorConfig::setConfigDefault();
161 $list[] = [
162 'config' => [
163 'wysisygScriptLocation' => E::url('js/crm.ckeditor.js'),
164 'CKEditorCustomConfig' => CRM_Ckeditor4_Form_CKEditorConfig::getConfigUrl(),
165 ],
166 ];
167 }
168 }
169
170 // --- Functions below this ship commented out. Uncomment as required. ---
171
172 /**
173 * Implements hook_civicrm_preProcess().
174 *
175 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_preProcess
176 */
177 //function ckeditor4_civicrm_preProcess($formName, &$form) {
178 //
179 //}
180
181 /**
182 * Implements hook_civicrm_navigationMenu().
183 *
184 * @link https://docs.civicrm.org/dev/en/latest/hooks/hook_civicrm_navigationMenu
185 */
186 //function ckeditor4_civicrm_navigationMenu(&$menu) {
187 // _ckeditor4_civix_insert_navigation_menu($menu, 'Mailings', array(
188 // 'label' => E::ts('New subliminal message'),
189 // 'name' => 'mailing_subliminal_message',
190 // 'url' => 'civicrm/mailing/subliminal',
191 // 'permission' => 'access CiviMail',
192 // 'operator' => 'OR',
193 // 'separator' => 0,
194 // ));
195 // _ckeditor4_civix_navigationMenu($menu);
196 //}