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 & Mistic |
---|
8 | */ |
---|
9 | |
---|
10 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
11 | |
---|
12 | define('SMILIES_DIR' , basename(dirname(__FILE__))); |
---|
13 | define('SMILIES_PATH' , PHPWG_PLUGINS_PATH . SMILIES_DIR . '/'); |
---|
14 | |
---|
15 | include_once(SMILIES_PATH.'smiliessupport.inc.php'); |
---|
16 | |
---|
17 | add_event_handler('render_comment_content', 'SmiliesParse', 60); |
---|
18 | add_event_handler('loc_after_page_header', 'add_smiliessupport'); |
---|
19 | |
---|
20 | function add_smiliessupport() { |
---|
21 | global $page, $pwg_loaded_plugins; |
---|
22 | |
---|
23 | if (!isset($pwg_loaded_plugins['bbcode_bar']) |
---|
24 | AND isset($page['body_id']) AND $page['body_id'] == 'thePicturePage') |
---|
25 | { |
---|
26 | set_smiliessupport(); |
---|
27 | } |
---|
28 | } |
---|
29 | |
---|
30 | if (script_basename() == 'admin') |
---|
31 | { |
---|
32 | add_event_handler('get_admin_plugin_menu_links', 'smiliessupport_admin_menu'); |
---|
33 | function smiliessupport_admin_menu($menu) |
---|
34 | { |
---|
35 | array_push($menu, array( |
---|
36 | 'NAME' => 'Smilies Support', |
---|
37 | 'URL' => get_root_url().'admin.php?page=plugin-' . SMILIES_DIR)); |
---|
38 | return $menu; |
---|
39 | } |
---|
40 | } |
---|
41 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.