-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathuninstall.php
More file actions
34 lines (24 loc) · 800 Bytes
/
uninstall.php
File metadata and controls
34 lines (24 loc) · 800 Bytes
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
<?php
/*
Redaxo-Addon Backend-Tools
Deinstallation
v1.9.0
by Falko Müller @ 2018-2024
*/
//Variablen deklarieren
$mypage = $this->getProperty('package');
$error = ""; $notice = "";
//Datenbank-Einträge löschen
rex_sql_table::get(rex::getTable('article_slice'))
->removeColumn('bet_slicetimer')
->alter();
//Cache leeren
rex_delete_cache();
echo rex_view::info($this->i18n('a1510_cache_cleared'));
//Module löschen
//$notice .= $I18N->msg('a1544_deletemodule'); //'Bitte löschen Sie die installierten Addon-Module von Hand.<br />';
//Aktionen löschen
//$notice .= 'Bitte löschen Sie die installierten Addon-Aktionen von Hand.<br />';
//Templates löschen
//$notice .= 'Bitte löschen Sie die installierten Addon-Templates von Hand.<br />';
?>