source: extensions/reply_to/main.inc.php @ 27153

Last change on this file since 27153 was 26677, checked in by mistic100, 10 years ago

compatibility with Comments on Albums for 2.6

File size: 828 bytes
Line 
1<?php 
2/*
3Plugin Name: Reply To
4Version: auto
5Description: This plugin allows you to add Twitter-like reply links to comments.
6Plugin URI: auto
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
12
13global $page;
14
15define('REPLYTO_ID' ,   basename(dirname(__FILE__)));
16define('REPLYTO_PATH' , PHPWG_PLUGINS_PATH . REPLYTO_ID . '/');
17
18add_event_handler('init', 'replyto_init');
19
20function replyto_init()
21{
22  include_once(REPLYTO_PATH.'reply_to.inc.php');
23  load_language('plugin.lang', REPLYTO_PATH);
24
25  add_event_handler('render_comment_content', 'replyto_parse', 60, 2);
26  if (script_basename() == 'comments')
27  {
28    add_event_handler('loc_end_comments', 'replyto_add_link', 60);
29  }
30  else
31  {
32    add_event_handler('loc_end_section_init', 'replyto_add_link');
33  }
34}
Note: See TracBrowser for help on using the repository browser.