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

Last change on this file since 20796 was 20796, checked in by mistic100, 11 years ago

add bbcode bar on contactform

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('render_contact_content', 'BBCodeParse');
24  add_event_handler('loc_after_page_header', 'add_bbcode_bar');
25}
26
27function add_bbcode_bar() 
28{
29  global $page, $pwg_loaded_plugins;
30 
31  if (isset($page['body_id']) AND $page['body_id'] == 'thePicturePage') 
32  {
33    $prefilter = 'picture';
34    $textarea_id = 'contentid';
35  }
36  else if (
37    script_basename() == 'index' and isset($pwg_loaded_plugins['Comments_on_Albums'])
38    and isset($page['section']) and $page['section'] == 'categories' and isset($page['category'])
39    ) 
40  {
41    $prefilter = 'comments_on_albums';
42    $textarea_id = 'contentid';
43  }
44  else if (isset($page['section']) and $page['section'] == 'guestbook') 
45  {
46    $prefilter = 'index';
47    $textarea_id = 'contentid';
48  }
49  else if (isset($page['section']) and $page['section'] == 'contact') 
50  {
51    $prefilter = 'index';
52    $textarea_id = 'cf_content';
53  }
54 
55  if (isset($prefilter))
56  {
57    set_bbcode_bar($prefilter, $textarea_id);
58  }
59}
60
61if (script_basename() == 'admin')
62{
63  add_event_handler('get_admin_plugin_menu_links', 'bbcode_bar_admin_menu');
64  function bbcode_bar_admin_menu($menu)
65  {
66    array_push($menu, array(
67      'NAME' => 'BBCode Bar',
68      'URL' => get_root_url().'admin.php?page=plugin-' . BBcode_DIR
69    ));
70    return $menu;
71  } 
72}
73
74?>
Note: See TracBrowser for help on using the repository browser.