installscript.php
23.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
<?php
//namespace administrator\components\com_jmap;
/**
* @package JMAP::administrator::components::com_jmap
* @author Joomla! Extensions Store
* @copyright (C) 2015 - Joomla! Extensions Store
* @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html
*/
defined ( '_JEXEC' ) or die ( 'Restricted access' );
jimport ( 'joomla.filesystem.file' );
/**
* Script to manage install/update/uninstall for component. Follow class convention
* @package JMAP::administrator::components::com_jmap
*/
class com_jmapInstallerScript {
/*
* Find mimimum required joomla version for this extension. It will be read from the version attribute (install tag) in the manifest file
*/
private $minimum_joomla_release = '3.0';
/*
* $parent is the class calling this method.
* $type is the type of change (install, update or discover_install, not uninstall).
* preflight runs before anything else and while the extracted files are in the uploaded temp folder.
* If preflight returns false, Joomla will abort the update and undo everything already done.
*/
function preflight($type, $parent) {
// Check for Joomla compatibility
if(version_compare(JVERSION, '3', '<') || version_compare(JVERSION, '4', '>=')) {
JFactory::getApplication()->enqueueMessage (JText::sprintf('COM_JMAP_INSTALLING_VERSION_NOTCOMPATIBLE', JVERSION), 'error');
return false;
}
}
/*
* $parent is the class calling this method.
* install runs after the database scripts are executed.
* If the extension is new, the install method is run.
* If install returns false, Joomla will abort the install and undo everything already done.
*/
function install($parent) {
$database = JFactory::getDBO ();
$lang = JFactory::getLanguage ();
$lang->load ( 'com_jmap' );
// All operation ok
echo (JText::_('COM_JMAP_INSTALL_SUCCESS'));
// INSTALL UTILITY PLUGIN - Current installer instance
$componentInstaller = JInstaller::getInstance ();
if(!$componentInstaller->getPath ( 'source' )) {
$componentInstaller = $parent->getParent();
}
$pathToPlugin = $componentInstaller->getPath ( 'source' ) . '/plugin';
// New plugin installer
$pluginInstaller = new JInstaller ();
if (! $pluginInstaller->install ( $pathToPlugin )) {
echo '<p>' . JText::_ ( 'COM_JMAP_ERROR_INSTALLING_UTILITY_PLUGIN' ) . '</p>';
} else {
$query = "UPDATE #__extensions SET " .
$database->quoteName('enabled') . " = 1," .
$database->quoteName('ordering') . " = 2" .
"\n WHERE type = 'plugin' AND element = " . $database->quote ( 'jmap' ) .
"\n AND folder = " . $database->quote ( 'system' );
$database->setQuery ( $query );
if (! $database->execute ()) {
echo '<p>' . JText::_ ( 'COM_JMAP_ERROR_PUBLISHING_UTILITY_PLUGIN' ) . '</p>';
}
// Redirect plugin ordered before the JMap Utilities to override the handleError custom 404 page if needed
$query = "UPDATE #__extensions SET " .
$database->quoteName('ordering') . " = 1" .
"\n WHERE type = 'plugin' AND element = " . $database->quote ( 'redirect' ) .
"\n AND folder = " . $database->quote ( 'system' );
$database->setQuery ( $query );
$database->execute ();
}
// INSTALL PINGOMATIC PLUGIN - Current installer instance
$pathToPlugin = $componentInstaller->getPath ( 'source' ) . '/pluginping';
// New plugin installer
$pluginInstaller = new JInstaller ();
if (! $pluginInstaller->install ( $pathToPlugin )) {
echo '<p>' . JText::_ ( 'COM_JMAP_ERROR_INSTALLING_PINGOMATIC_PLUGIN' ) . '</p>';
} else {
$query = "UPDATE #__extensions SET " .
$database->quoteName('enabled') . " = 1," .
$database->quoteName('ordering') . " = 0" .
"\n WHERE type = 'plugin' AND element = " . $database->quote ( 'pingomatic' ) .
"\n AND folder = " . $database->quote ( 'content' );
$database->setQuery ( $query );
if (! $database->execute ()) {
echo '<p>' . JText::_ ( 'COM_JMAP_ERROR_PUBLISHING_PINGOMATIC_PLUGIN' ) . '</p>';
}
}
// INSTALL SITE MODULE - Current installer instance
$pathToSiteModule = $componentInstaller->getPath ( 'source' ) . '/modules/site';
// New module installer
$moduleInstaller = new JInstaller ();
if (! $moduleInstaller->install ( $pathToSiteModule )) {
echo '<p>' . JText::_ ( 'COM_JMAP_ERROR_INSTALLING_MODULE' ) . '</p>';
}
// INSTALL ADMIN MODULE - Current installer instance
$pathToAdminModule = $componentInstaller->getPath ( 'source' ) . '/modules/admin';
// New module installer
$moduleInstaller = new JInstaller ();
if (! $moduleInstaller->install ( $pathToAdminModule )) {
echo '<p>' . JText::_ ( 'COM_JMAP_ERROR_INSTALLING_ADMIN_MODULE' ) . '</p>';
} else {
$query = "UPDATE #__modules" .
"\n SET " . $database->quoteName('published') . " = 1," .
"\n" . $database->quoteName('position') . " = " . $database->quote('icon') . "," .
"\n" . $database->quoteName('ordering') . " = 99" .
"\n WHERE " . $database->quoteName('module') . " = " . $database->quote('mod_jmapquickicon') .
"\n AND " . $database->quoteName('client_id') . " = 1";
$database->setQuery($query);
if(!$database->execute()) {
echo JText::_('COM_JMAP_ERROR_PUBLISHING_ADMIN_MODULE');
}
// Publish all pages for default on joomla1.6+
$query = $database->getQuery(true);
$query->select('id');
$query->from('#__modules');
$query->where($database->quoteName('module') . '=' . $database->quote('mod_jmapquickicon'));
$query->where($database->quoteName('client_id') . '= 1');
$database->setQuery($query);
$lastIDForModule = $database->loadResult();
// Now insert
try {
$query = $database->getQuery(true);
$query->insert('#__modules_menu');
$query->set($database->quoteName('moduleid') . '=' . $database->quote($lastIDForModule));
$query->set($database->quoteName('menuid') . '= 0');
$database->setQuery($query);
$database->execute();
} catch (Exception $e) {
// Already existing no insert - do nothing all true
}
}
// Robots.txt images management
$targetRobot = null;
// Try standard robots.txt
if(JFile::exists(JPATH_ROOT . DIRECTORY_SEPARATOR . 'robots.txt')) {
$targetRobot = JPATH_ROOT . DIRECTORY_SEPARATOR . 'robots.txt';
} elseif (JFile::exists(JPATH_ROOT . DIRECTORY_SEPARATOR . 'robots.txt.dist')) { // Fallback on distribution version
$targetRobot = JPATH_ROOT . DIRECTORY_SEPARATOR . 'robots.txt.dist';
} else {
$targetRobot = false; // Not found do nothing
}
// Robots.txt found!
if($targetRobot !== false) {
// If file permissions ko
if(!$robotContents = JFile::read($targetRobot)) {
echo JText::_('COM_JMAP_JSITEMAP_REMEMBER_SET_ROBOTS_FOR_IMAGES');
}
// Repair the standard Joomla robots.txt for nowadays Google indexing
$managedRobotContents = preg_replace('#Disallow: .*/images.*#', '', $robotContents);
$managedRobotContents = preg_replace('#Disallow: .*/media.*#', '', $managedRobotContents);
$managedRobotContents = preg_replace('#Disallow: .*/templates.*#', '', $managedRobotContents);
$managedRobotContents = preg_replace('#Disallow: .*/components.*#', '', $managedRobotContents);
$managedRobotContents = preg_replace('#Disallow: .*/modules.*#', '', $managedRobotContents);
$managedRobotContents = preg_replace('#Disallow: .*/plugins.*#', '', $managedRobotContents);
// Perform only once to fix the JS/CSS blocking resources
if(!preg_match('#Allow: \/\*\.js\*#', $managedRobotContents)) {
$managedRobotContents = preg_replace('#User-agent: \*#i', 'User-agent: *' .
PHP_EOL . 'Allow: /*.js*' .
PHP_EOL . 'Allow: /*.css*' .
PHP_EOL . 'Allow: /*.png*' .
PHP_EOL . 'Allow: /*.jpg*' .
PHP_EOL . 'Allow: /*.gif*' .
PHP_EOL , $managedRobotContents);
}
// If file permissions ko on rewrite updated contents
$originalPermissions = null;
if($managedRobotContents) {
if(!is_writable($targetRobot)) {
$originalPermissions = intval(substr(sprintf('%o', fileperms($targetRobot)), -4), 8);
@chmod($targetRobot, 0755);
}
if(@!JFile::write($targetRobot, $managedRobotContents)) {
echo JText::_('COM_JMAP_JSITEMAP_REMEMBER_SET_ROBOTS_FOR_IMAGES');
}
// Check if permissions has been changed and recover the original in that case
if($originalPermissions) {
@chmod($targetRobot, $originalPermissions);
}
}
}
// DB UPDATES PROCESSING
$queryFields = "SHOW COLUMNS " .
"\n FROM " . $database->quoteName('#__jmap_metainfo');
$database->setQuery($queryFields);
try {
$elements = $database->loadColumn();
if(!in_array('meta_image', $elements)) {
$addFieldQuery = "ALTER TABLE " . $database->quoteName('#__jmap_metainfo') .
"\n ADD " . $database->quoteName('meta_image') .
"\n VARCHAR(255) NULL AFTER " . $database->quoteName('meta_desc');
$database->setQuery($addFieldQuery)->execute();
}
if(!in_array('excluded', $elements)) {
$addFieldQuery = "ALTER TABLE " . $database->quoteName('#__jmap_metainfo') .
"\n ADD " . $database->quoteName('excluded') .
"\n TINYINT(1) NOT NULL DEFAULT 0 AFTER " . $database->quoteName('published');
$database->setQuery($addFieldQuery)->execute();
}
// Migrate needed tables fields to Utf8mb4 charset and utf8mb4_unicode_ci collation if the DB version supports it, use feature detection on the #__content core table
// Get Third Party table current collation
$thirdpartyCollationQuery = "SHOW FULL COLUMNS FROM " . $database->quoteName(('#__jmap_metainfo'));
$thirdpartyResultTableInfo = $database->setQuery($thirdpartyCollationQuery)->loadObjectList();
$thirdpartyResultTableFieldInfo = $thirdpartyResultTableInfo[1]; // linkurl field
// Get Joomla core table current collation
$featureDetectionCollationQuery = "SHOW FULL COLUMNS FROM " . $database->quoteName(('#__content'));
$resultTableInfo = $database->setQuery($featureDetectionCollationQuery)->loadObjectList();
$resultTableFieldInfo = $resultTableInfo[2]; // Title field
if(isset($resultTableFieldInfo->Collation) && strpos($resultTableFieldInfo->Collation, 'utf8mb4') !== false && isset($thirdpartyResultTableFieldInfo->Collation) && $resultTableFieldInfo->Collation != $thirdpartyResultTableFieldInfo->Collation) {
// linkurl field for #__jmap_metainfo, #__jmap_canonicals, #__jmap_headings tables set to Utf8mb4 utf8mb4_unicode_ci
$charset = 'utf8mb4';
$alterTablesCollation = "ALTER TABLE " . $database->quoteName('#__jmap_metainfo') . " CHANGE " . $database->quoteName('linkurl') . " " . $database->quoteName('linkurl') ." VARCHAR(600) CHARACTER SET " . $charset . " COLLATE " . $resultTableFieldInfo->Collation . " NOT NULL;";
$database->setQuery($alterTablesCollation)->execute();
$alterTablesCollation = "ALTER TABLE " . $database->quoteName('#__jmap_canonicals') . " CHANGE " . $database->quoteName('linkurl') . " " . $database->quoteName('linkurl') ." VARCHAR(600) CHARACTER SET " . $charset . " COLLATE " . $resultTableFieldInfo->Collation . " NOT NULL;";
$database->setQuery($alterTablesCollation)->execute();
$alterTablesCollation = "ALTER TABLE " . $database->quoteName('#__jmap_headings') . " CHANGE " . $database->quoteName('linkurl') . " " . $database->quoteName('linkurl') ." VARCHAR(600) CHARACTER SET " . $charset . " COLLATE " . $resultTableFieldInfo->Collation . " NOT NULL;";
$database->setQuery($alterTablesCollation)->execute();
}
} catch (Exception $e) { }
// Processing complete
return true;
}
/*
* $parent is the class calling this method.
* update runs after the database scripts are executed.
* If the extension exists, then the update method is run.
* If this returns false, Joomla will abort the update and undo everything already done.
*/
function update($parent) {
// Execute always sql install file to get added updates in that file, disregard DBMS messages and Joomla queue for user
$parentParent = $parent->getParent();
$parentManifest = $parentParent->getManifest();
try {
// Install/update always without error handling case legacy J Error
JError::setErrorHandling(E_ALL, 'ignore');
if (isset($parentManifest->install->sql)) {
$parentParent->parseSQLFiles($parentManifest->install->sql);
}
// Force refresh of the SEO stats on update to the 4.6.2 multiple web services
echo ("<script>if(window.sessionStorage !== null){sessionStorage.removeItem('seostats');sessionStorage.removeItem('seostats_service');sessionStorage.removeItem('seostats_targeturl');}</script>");
} catch (Exception $e) {
// Do nothing for user for Joomla 3.x case, case Exception handling
}
// Install on update in same way
$this->install($parent);
}
/*
* $parent is the class calling this method.
* $type is the type of change (install, update or discover_install, not uninstall).
* postflight is run after the extension is registered in the database.
*/
function postflight($type, $parent) {
// define the following parameters only if it is an original install
if ($type == 'install') {
// Preferences
$params ['show_title'] = '1';
$params ['title_type'] = 'maintitle';
$params ['defaulttitle'] = '';
$params ['headerlevel'] = '1';
$params ['classdiv'] = 'sitemap';
$params ['show_pagebreaks'] = '0';
$params ['opentarget'] = '_self';
$params ['include_external_links'] = '1';
$params ['unique_pagination'] = '1';
$params ['registration_email'] = '';
$params ['custom_404_page_status'] = '0';
$params ['custom_404_page_override'] = '1';
$params ['custom_404_page_mode'] = 'html';
$params ['custom_404_process_content_plugins'] = '0';
$params ['custom_404_page_text'] = 'Sorry, this page is not available!';
// Sitemap aspect
$params ['sitemap_html_template'] = '';
$params ['show_icons'] = '1';
$params ['animated'] = '1';
$params ['animate_speed'] = '200';
$params ['minheight_root_folders'] = '35';
$params ['minheight_sub_folders'] = '30';
$params ['minheight_leaf'] = '20';
$params ['minwidth_columns'] = '120';
$params ['font_size_boxes'] = '12';
$params ['root_folders_color'] = '#F60';
$params ['root_folders_border_color'] = '#943B00';
$params ['root_folders_text_color'] = '#FFF';
$params ['sub_folders_color'] = '#99CDFF';
$params ['sub_folders_border_color'] = '#11416F';
$params ['sub_folders_text_color'] = '#11416F';
$params ['leaf_folders_color'] = '#EBEBEB';
$params ['leaf_folders_border_color'] = '#6E6E6E';
$params ['leaf_folders_text_color'] = '#505050';
$params ['connections_color'] = '#CCC';
$params ['expand_iconset'] = 'square-blue';
$params ['auto_height_canvas'] = '1';
$params ['auto_scale_canvas'] = '0';
$params ['tree_orientation'] = 'horizontal';
$params ['height_canvas'] = '1000';
$params ['width_canvas'] = '100%';
$params ['root_color'] = '#9df2e9';
$params ['child_color'] = '#e0c8be';
$params ['node_color_text'] = '#333';
$params ['instructions_canvas'] = '1';
$params ['draggable_sitemap'] = '0';
$params ['template_override'] = '0';
$params ['treeview_scripts'] = '1';
$params ['show_expanded'] = '0';
$params ['expand_location'] = 'location';
$params ['column_sitemap'] = '0';
$params ['column_maxnum'] = '3';
$params ['multilevel_categories'] = '0';
$params ['hide_empty_cats'] = '0';
$params ['expand_first_level'] = '0';
$params ['merge_alias_menu'] = '0';
$params ['show_toggler'] = '0';
//Caching
$params ['enable_view_cache'] = '0';
$params ['lifetime_view_cache'] = '1';
$params ['rss_lifetime_view_cache'] = '60';
$params ['enable_precaching'] = '0';
$params ['precaching_limit_xml'] = '5000';
$params ['precaching_limit_images'] = '50';
$params ['split_sitemap'] = '0';
$params ['split_chunks'] = '50000';
$params ['splitting_hardcoded_rootnode'] = '1';
//Sitemap settings
$params ['gnews_publication_name'] = '';
$params ['gnews_limit_recent'] = '0';
$params ['gnews_limit_valid_days'] = '2';
$params ['gnews_genres'] = array('Blog');
$params ['imagetitle_processor'] = 'title|alt';
$params ['max_images_requests'] = '50';
$params ['regex_images_crawler'] = 'advanced';
$params ['fake_images_processor'] = '0';
$params ['lazyload_images_processor'] = '0';
$params ['custom_images_processor'] = '0';
$params ['custom_images_processor_tags'] = '';
$params ['custom_images_processor_attributes'] = '';
$params ['include_description_only'] = '0';
$params ['sh404sef_multilanguage'] = '0';
$params ['images_global_filter_include'] = '';
$params ['images_global_filter_exclude'] = '';
$params ['videos_global_filter_include'] = '';
$params ['videos_global_filter_exclude'] = '';
$params ['cdn_protocol'] = '';
$params ['rss_channel_name'] = '';
$params ['rss_channel_description'] = '';
$params ['rss_channel_image'] = '';
$params ['rss_webmaster_name'] = '';
$params ['rss_webmaster_email'] = '';
$params ['rss_channel_excludewords'] = '';
$params ['rss_limit_valid_days'] = '';
$params ['rss_limit_recent'] = '';
$params ['rss_process_content_plugins'] = '0';
$params ['rss_include_images'] = '0';
$params ['rss_include_author'] = '0';
$params ['geositemap_enabled'] = '0';
$params ['geositemap_address'] = '';
$params ['geositemap_name'] = '';
$params ['geositemap_author'] = '';
$params ['geositemap_description'] = '';
$params ['amp_sitemap_enabled'] = '0';
$params ['amp_suffix'] = 'amp';
$params ['amp_sef_suffix_enabled'] = '0';
// Advanced settings
$params ['include_archived'] = '0';
$params ['multiple_content_sources'] = '0';
$params ['enable_articles_exclusions'] = '1';
$params ['disable_acl'] = 'enabled';
$params ['auto_exclude_noindex'] = '0';
$params ['showalways_language_dropdown'] = '';
$params ['lists_limit_pagination'] = '10';
$params ['selectable_limit_pagination'] = '10';
$params ['seostats_custom_link'] = '';
$params ['seostats_enabled'] = '1';
$params ['seostats_service'] = 'alexa';
$params ['seostats_site_query'] = '1';
$params ['seostats_gethost'] = '1';
$params ['linksanalyzer_workingmode'] = '1';
$params ['linksanalyzer_validation_analysis'] = '2';
$params ['linksanalyzer_indexing_analysis'] = '1';
$params ['linksanalyzer_indexing_engine'] = 'webcrawler';
$params ['linksanalyzer_indexing_engine_selector_webcrawler'] = 'web-bing__url';
$params ['linksanalyzer_indexing_engine_selector_bing'] = 'b_attribution';
$params ['linksanalyzer_serp_numresults'] = '10';
$params ['linksanalyzer_remove_separators'] = '1';
$params ['linksanalyzer_remove_slashes'] = '2';
$params ['seospider_override_headings'] = '1';
$params ['seospider_override_headings_html'] = '0';
$params ['seospider_override_canonical'] = '1';
$params ['seospider_crawler_delay'] = '500';
$params ['metainfo_urldecode'] = '1';
$params ['metainfo_ogtags'] = '1';
$params ['metainfo_twitter_card_enable'] = '0';
$params ['metainfo_twitter_card_site'] = '';
$params ['metainfo_twitter_card_creator'] = '';
$params ['default_autoping'] = '0';
$params ['default_autoping_single_article'] = '1';
$params ['autoping'] = '0';
$params ['sitemap_links_sef'] = '0';
$params ['sitemap_links_forceformat'] = '0';
$params ['sitemap_links_random'] = '0';
$params ['append_livesite'] = '1';
$params ['custom_sitemap_domain'] = '';
$params ['custom_http_port'] = '';
$params ['resources_limit_management'] = '1';
$params ['remove_sitemap_serp'] = '0';
$params ['remove_home_slash'] = '0';
$params ['advanced_multilanguage'] = '0';
$params ['socket_mode'] = 'dns';
$params ['force_crawler_http'] = '0';
$params ['site_itemid'] = '';
$params ['robots_joomla_subfolder'] = '0';
$params ['disable_version_checker'] = '0';
$params ['loadasyncscripts'] = '0';
$params ['includejquery'] = '1';
$params ['enable_debug'] = '0';
// Google Analytics
$params ['ga_domain'] = '';
$params ['wm_domain'] = '';
$params ['ga_num_results'] = '24';
$params ['ga_domain_match_protocol'] = '0';
$params ['ga_api_key'] = '';
$params ['ga_client_id'] = '';
$params ['ga_client_secret'] = '';
$params ['inject_gajs'] = '0';
$params ['gajs_code'] = '';
$params ['inject_gajs_location'] = 'body';
$params ['inject_gajs_version'] = 'analytics';
$params ['gajs_anonymize'] = '0';
$this->setParams ( $params );
}
}
/*
* $parent is the class calling this method
* uninstall runs before any other action is taken (file removal or database processing).
*/
function uninstall($parent) {
$database = JFactory::getDBO ();
$lang = JFactory::getLanguage();
$lang->load('com_jmap');
echo JText::_('COM_JMAP_UNINSTALL_SUCCESS' );
// UNINSTALL UTILITY PLUGIN - Check if plugin exists
$query = "SELECT extension_id" .
"\n FROM #__extensions" .
"\n WHERE type = 'plugin' AND element = " . $database->quote('jmap') .
"\n AND folder = " . $database->quote('system');
$database->setQuery($query);
$pluginID = $database->loadResult();
if($pluginID) {
// New plugin installer
$pluginInstaller = new JInstaller ();
if(!$pluginInstaller->uninstall('plugin', $pluginID)) {
echo '<p>' . JText::_('COM_JMAP_ERROR_UNINSTALLING_UTLITY_PLUGIN') . '</p>';
}
}
// UNINSTALL PINGOMATIC PLUGIN - Check if plugin exists
$query = "SELECT extension_id" .
"\n FROM #__extensions" .
"\n WHERE type = 'plugin' AND element = " . $database->quote('pingomatic') .
"\n AND folder = " . $database->quote('content');
$database->setQuery($query);
$pluginID = $database->loadResult();
if($pluginID) {
// New plugin installer
$pluginInstaller = new JInstaller ();
if(!$pluginInstaller->uninstall('plugin', $pluginID)) {
echo '<p>' . JText::_('COM_JMAP_ERROR_UNINSTALLING_PINGOMATIC_PLUGIN') . '</p>';
}
}
// UNINSTALL SITE MODULE - Check if site module exists
$query = "SELECT extension_id" .
"\n FROM #__extensions" .
"\n WHERE type = 'module' AND element = " . $database->quote('mod_jmap') .
"\n AND client_id = 0";
$database->setQuery($query);
$moduleID = $database->loadResult();
if(!$moduleID) {
echo '<p>' . JText::_('COM_JMAP_MODULE_ALREADY_REMOVED') . '</p>';
} else {
// New module installer
$moduleInstaller = new JInstaller ();
if(!$moduleInstaller->uninstall('module', $moduleID)) {
echo '<p>' . JText::_('COM_JMAP_ERROR_UNINSTALLING_MODULE') . '</p>';
}
}
// UNINSTALL ADMIN MODULE - Check if site module exists
$query = "SELECT extension_id" .
"\n FROM #__extensions" .
"\n WHERE type = 'module' AND element = " . $database->quote('mod_jmapquickicon') .
"\n AND client_id = 1";
$database->setQuery($query);
$moduleID = $database->loadResult();
if(!$moduleID) {
echo '<p>' . JText::_('COM_JMAP_MODULE_ALREADY_REMOVED') . '</p>';
} else {
// New module installer
$moduleInstaller = new JInstaller ();
if(!$moduleInstaller->uninstall('module', $moduleID)) {
echo '<p>' . JText::_('COM_JMAP_ERROR_UNINSTALLING_MODULE') . '</p>';
}
}
// Processing complete
return true;
}
/*
* get a variable from the manifest file (actually, from the manifest cache).
*/
function getParam($name) {
$db = JFactory::getDbo ();
$db->setQuery ( 'SELECT manifest_cache FROM #__extensions WHERE name = "jmap"' );
$manifest = json_decode ( $db->loadResult (), true );
return $manifest [$name];
}
/*
* sets parameter values in the component's row of the extension table
*/
function setParams($param_array) {
if (count ( $param_array ) > 0) {
$db = JFactory::getDbo ();
// store the combined new and existing values back as a JSON string
$paramsString = json_encode ( $param_array );
$db->setQuery ( 'UPDATE #__extensions SET params = ' . $db->quote ( $paramsString ) . ' WHERE name = "jmap"' );
$db->execute ();
}
}
}