Line | |
---|
1 | <?php |
---|
2 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
3 | |
---|
4 | define( |
---|
5 | 'Instagram2Piwigo_default_config', |
---|
6 | serialize(array( |
---|
7 | 'api_key' => null, |
---|
8 | 'secret_key' => null, |
---|
9 | )) |
---|
10 | ); |
---|
11 | |
---|
12 | |
---|
13 | function plugin_install() |
---|
14 | { |
---|
15 | global $conf; |
---|
16 | |
---|
17 | conf_update_param('Instagram2Piwigo', Instagram2Piwigo_default_config); |
---|
18 | |
---|
19 | mkdir($conf['data_location'].'instagram_cache/', 0755); |
---|
20 | } |
---|
21 | |
---|
22 | function plugin_activate() |
---|
23 | { |
---|
24 | global $conf; |
---|
25 | |
---|
26 | if (empty($conf['Instagram2Piwigo'])) |
---|
27 | { |
---|
28 | conf_update_param('Instagram2Piwigo', Instagram2Piwigo_default_config); |
---|
29 | } |
---|
30 | |
---|
31 | if (!file_exists($conf['data_location'].'instagram_cache/')) |
---|
32 | { |
---|
33 | mkdir($conf['data_location'].'instagram_cache/', 0755); |
---|
34 | } |
---|
35 | } |
---|
36 | |
---|
37 | function plugin_uninstall() |
---|
38 | { |
---|
39 | global $conf; |
---|
40 | |
---|
41 | pwg_query('DELETE FROM `'. CONFIG_TABLE .'` WHERE param = "Instagram2Piwigo";'); |
---|
42 | unset($conf['Instagram2Piwigo']); |
---|
43 | |
---|
44 | rrmdir($conf['data_location'].'instagram_cache/'); |
---|
45 | } |
---|
46 | |
---|
47 | function rrmdir($dir) |
---|
48 | { |
---|
49 | if (!is_dir($dir)) |
---|
50 | { |
---|
51 | return false; |
---|
52 | } |
---|
53 | $dir = rtrim($dir, '/'); |
---|
54 | $objects = scandir($dir); |
---|
55 | $return = true; |
---|
56 | |
---|
57 | foreach ($objects as $object) |
---|
58 | { |
---|
59 | if ($object !== '.' && $object !== '..') |
---|
60 | { |
---|
61 | $path = $dir.'/'.$object; |
---|
62 | if (filetype($path) == 'dir') |
---|
63 | { |
---|
64 | $return = $return && rrmdir($path); |
---|
65 | } |
---|
66 | else |
---|
67 | { |
---|
68 | $return = $return && @unlink($path); |
---|
69 | } |
---|
70 | } |
---|
71 | } |
---|
72 | |
---|
73 | return $return && @rmdir($dir); |
---|
74 | } |
---|
75 | |
---|
76 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.