source: extensions/SmiliesSupport/main.inc.php @ 10986

Last change on this file since 10986 was 10986, checked in by mistic100, 13 years ago

code cleanup

File size: 1.1 KB
Line 
1<?php
2/*
3Plugin Name: Smilies Support
4Version: auto
5Description: Allow add Smilies for comments and descriptions.
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=159
7Author: Atadilo & P@t & Mistic
8*/
9
10if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
11
12define('SMILIES_DIR' , basename(dirname(__FILE__)));
13define('SMILIES_PATH' , PHPWG_PLUGINS_PATH . SMILIES_DIR . '/');
14
15include_once(SMILIES_PATH.'smiliessupport.inc.php');
16
17add_event_handler('render_comment_content', 'SmiliesParse', 60);
18add_event_handler('loc_after_page_header', 'add_smiliessupport');
19
20function 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
30if (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.