Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Smilies Support |
---|
4 | Version: auto |
---|
5 | Description: Allow add Smilies for comments and descriptions. |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=159 |
---|
7 | Author: Atadilo & P@t |
---|
8 | */ |
---|
9 | |
---|
10 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
11 | |
---|
12 | include_once(dirname(__FILE__).'/smiliessupport.inc.php'); |
---|
13 | |
---|
14 | add_event_handler('init', 'init_smiliessupport'); |
---|
15 | add_event_handler('render_comment_content', 'SmiliesParse', 60); |
---|
16 | add_event_handler('loc_begin_picture', 'set_smiliessupport_page'); |
---|
17 | |
---|
18 | function init_smiliessupport() |
---|
19 | { |
---|
20 | remove_event_handler('render_comment_content', 'parse_comment_content'); |
---|
21 | } |
---|
22 | |
---|
23 | if (script_basename() == 'admin') |
---|
24 | { |
---|
25 | add_event_handler('get_admin_plugin_menu_links', 'smiliessupport_admin_menu'); |
---|
26 | |
---|
27 | function smiliessupport_admin_menu($menu) { |
---|
28 | array_push($menu, |
---|
29 | array('NAME' => 'Smilies Support', |
---|
30 | 'URL' => get_admin_plugin_menu_link(dirname(__FILE__) . '/smiliessupport_admin.php'))); |
---|
31 | return $menu; |
---|
32 | } |
---|
33 | } |
---|
34 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.