Last change
on this file since 28441 was
27458,
checked in by ddtddt, 11 years ago
|
[extensions] - Photo_add_by - if plugin see photo by user is actif - can show link on user on picture page with parameter plugin see photo by user
|
File size:
427 bytes
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
4 | |
---|
5 | |
---|
6 | function plugin_install() |
---|
7 | { |
---|
8 | |
---|
9 | } |
---|
10 | |
---|
11 | function plugin_activate() |
---|
12 | { |
---|
13 | global $conf; |
---|
14 | if (!isset($conf['Photo_add_by'])) |
---|
15 | { |
---|
16 | conf_update_param('Photo_add_by', 'datecreate'); |
---|
17 | } |
---|
18 | if (!isset($conf['Photo_add_by_show'])) |
---|
19 | { |
---|
20 | conf_update_param('Photo_add_by_show', '0'); |
---|
21 | } |
---|
22 | |
---|
23 | |
---|
24 | } |
---|
25 | |
---|
26 | |
---|
27 | function plugin_uninstall() |
---|
28 | { |
---|
29 | conf_delete_param('Photo_add_by_show','Photo_add_by'); |
---|
30 | } |
---|
31 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.