1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: SmartAlbums |
---|
4 | Version: auto |
---|
5 | Description: Easily create dynamic albums with tags, date and other criteria |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=544 |
---|
7 | Author: Mistic |
---|
8 | Author URI: http://www.strangeplanet.fr |
---|
9 | */ |
---|
10 | |
---|
11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
12 | global $prefixeTable; |
---|
13 | |
---|
14 | define('SMART_PATH', PHPWG_PLUGINS_PATH . 'SmartAlbums/'); |
---|
15 | define('CATEGORY_FILTERS_TABLE', $prefixeTable . 'category_filters'); |
---|
16 | define('SMART_ADMIN', get_root_url() . 'admin.php?page=plugin-SmartAlbums'); |
---|
17 | define('SMART_VERSION', 'auto'); |
---|
18 | //define('SMART_DEBUG', true); |
---|
19 | |
---|
20 | |
---|
21 | add_event_handler('init', 'smart_init'); |
---|
22 | add_event_handler('init', 'smart_periodic_update'); |
---|
23 | add_event_handler('invalidate_user_cache', 'smart_make_all_associations'); |
---|
24 | |
---|
25 | if (defined('IN_ADMIN')) |
---|
26 | { |
---|
27 | include_once(SMART_PATH.'include/cat_list.php'); |
---|
28 | add_event_handler('loc_begin_cat_list', 'smart_cat_list'); |
---|
29 | add_event_handler('tabsheet_before_select','smart_tab', EVENT_HANDLER_PRIORITY_NEUTRAL, 2); |
---|
30 | add_event_handler('get_admin_plugin_menu_links', 'smart_admin_menu'); |
---|
31 | add_event_handler('delete_categories', 'smart_delete_categories'); |
---|
32 | } |
---|
33 | |
---|
34 | include_once(SMART_PATH.'include/functions.inc.php'); |
---|
35 | |
---|
36 | |
---|
37 | /** |
---|
38 | * update plugin & unserialize conf & load language |
---|
39 | */ |
---|
40 | function smart_init() |
---|
41 | { |
---|
42 | global $conf, $pwg_loaded_plugins; |
---|
43 | |
---|
44 | if ( |
---|
45 | SMART_VERSION == 'auto' or |
---|
46 | $pwg_loaded_plugins['SmartAlbums']['version'] == 'auto' or |
---|
47 | version_compare($pwg_loaded_plugins['SmartAlbums']['version'], SMART_VERSION, '<') |
---|
48 | ) |
---|
49 | { |
---|
50 | include_once(SMART_PATH . 'include/install.inc.php'); |
---|
51 | smart_albums_install(); |
---|
52 | |
---|
53 | if ( $pwg_loaded_plugins['SmartAlbums']['version'] != 'auto' and SMART_VERSION != 'auto' ) |
---|
54 | { |
---|
55 | $query = ' |
---|
56 | UPDATE '. PLUGINS_TABLE .' |
---|
57 | SET version = "'. SMART_VERSION .'" |
---|
58 | WHERE id = "SmartAlbums"'; |
---|
59 | pwg_query($query); |
---|
60 | |
---|
61 | $pwg_loaded_plugins['SmartAlbums']['version'] = SMART_VERSION; |
---|
62 | |
---|
63 | if (defined('IN_ADMIN')) |
---|
64 | { |
---|
65 | $_SESSION['page_infos'][] = 'Smart Albums updated to version '. SMART_VERSION; |
---|
66 | } |
---|
67 | } |
---|
68 | } |
---|
69 | |
---|
70 | if (defined('IN_ADMIN')) |
---|
71 | { |
---|
72 | load_language('plugin.lang', SMART_PATH); |
---|
73 | } |
---|
74 | $conf['SmartAlbums'] = unserialize($conf['SmartAlbums']); |
---|
75 | |
---|
76 | if ( script_basename() == 'index' and $conf['SmartAlbums']['smart_is_forbidden'] ) |
---|
77 | { |
---|
78 | add_event_handler('loc_end_section_init', 'smart_init_page_items'); |
---|
79 | include_once(SMART_PATH.'include/page_items.php'); |
---|
80 | } |
---|
81 | } |
---|
82 | |
---|
83 | /** |
---|
84 | * new tab on album properties page |
---|
85 | */ |
---|
86 | function smart_tab($sheets, $id) |
---|
87 | { |
---|
88 | if ($id != 'album') return $sheets; |
---|
89 | |
---|
90 | global $category; |
---|
91 | |
---|
92 | if ($category['dir'] == null) |
---|
93 | { |
---|
94 | $sheets['smartalbum'] = array( |
---|
95 | 'caption' => 'SmartAlbum', |
---|
96 | 'url' => SMART_ADMIN.'-album&cat_id='.$_GET['cat_id'], |
---|
97 | ); |
---|
98 | } |
---|
99 | |
---|
100 | return $sheets; |
---|
101 | } |
---|
102 | |
---|
103 | |
---|
104 | /** |
---|
105 | * admin plugins menu link |
---|
106 | */ |
---|
107 | function smart_admin_menu($menu) |
---|
108 | { |
---|
109 | array_push($menu, array( |
---|
110 | 'NAME' => 'SmartAlbums', |
---|
111 | 'URL' => SMART_ADMIN, |
---|
112 | )); |
---|
113 | return $menu; |
---|
114 | } |
---|
115 | |
---|
116 | ?> |
---|