source: extensions/bbcode_bar/main.inc.php @ 11351

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

use a prefilter, works with theme 'Simple'

File size: 2.0 KB
Line 
1<?php 
2/*
3Plugin Name: BBCode Bar
4Version: auto
5Description: Allow use BBCode for comments and descriptions.
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=140
7Author: Atadilo & P@t & Mistic
8*/
9
10if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
11
12define('BBcode_DIR' , basename(dirname(__FILE__)));
13define('BBcode_PATH' , PHPWG_PLUGINS_PATH . BBcode_DIR . '/');
14define('BBcode_codes', serialize(array('b','i','u','s','p','center','right','quote','ul','ol','img','url','email','size','color')));
15
16include_once(BBcode_PATH.'bbcode_bar.inc.php');
17add_event_handler('init', 'init_bbcode_bar');
18
19function init_bbcode_bar()
20{
21  remove_event_handler('render_comment_content', 'render_comment_content');
22  add_event_handler('render_comment_content', 'BBCodeParse');
23  add_event_handler('loc_after_page_header', 'add_bbcode_bar');
24}
25
26function add_bbcode_bar() 
27{
28  global $page;
29 
30  if (isset($page['body_id']) AND $page['body_id'] == 'thePicturePage') 
31  {
32    set_bbcode_bar();
33  }
34}
35
36if (script_basename() == 'admin')
37{
38  add_event_handler('get_admin_plugin_menu_links', 'bbcode_bar_admin_menu');
39  function bbcode_bar_admin_menu($menu)
40  {
41    array_push($menu, array(
42      'NAME' => 'BBCode Bar',
43      'URL' => get_root_url().'admin.php?page=plugin-' . BBcode_DIR
44    ));
45    return $menu;
46  }
47 
48  // version 2.2.a or greater of SmiliesSupport is required
49  add_event_handler('loc_end_admin', 'bbcode_bar_check_smilies');
50  function bbcode_bar_check_smilies() 
51  {
52    global $page, $template, $pwg_loaded_plugins;
53
54    if (
55      ( (isset($_GET['page']) AND $_GET['page'] == 'plugins_list') OR (isset($_GET['section']) AND $_GET['section'] == 'bbcode_bar/admin.php') )
56      AND isset($pwg_loaded_plugins['SmiliesSupport']) AND strcmp($pwg_loaded_plugins['SmiliesSupport']['version'], '2.2.f') == -1
57    ) {
58      array_push($page['warnings'], "BBCode Bar : SmiliesSupport has been detected, but is not up to date. Version 2.2.a or greater is required. Please update.");
59      $template->assign('warnings', $page['warnings']);
60    }
61  }
62 
63}
64
65?>
Note: See TracBrowser for help on using the repository browser.