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

Last change on this file since 15907 was 15645, checked in by mistic100, 12 years ago

fix bad loading of language file

File size: 859 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: http://piwigo.org/ext/extension_view.php?eid=556
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13global $page;
14
15define('REPLYTO_DIR' , basename(dirname(__FILE__)));
16define('REPLYTO_PATH' , PHPWG_PLUGINS_PATH . REPLYTO_DIR . '/');
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') add_event_handler('loc_after_page_header', 'replyto_add_link');
27  else add_event_handler('loc_end_section_init', 'replyto_add_link');
28}
29   
30?>
Note: See TracBrowser for help on using the repository browser.