Rev | Line | |
---|
[11252] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Plugin Name: Reply To |
---|
| 4 | Version: auto |
---|
| 5 | Description: This plugin allows you to add Twitter-like reply links to comments. |
---|
[11416] | 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=556 |
---|
[11252] | 7 | Author: Mistic |
---|
| 8 | Author URI: http://www.strangeplanet.fr |
---|
| 9 | */ |
---|
| 10 | |
---|
| 11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 12 | |
---|
| 13 | global $page; |
---|
| 14 | |
---|
| 15 | define('REPLYTO_DIR' , basename(dirname(__FILE__))); |
---|
| 16 | define('REPLYTO_PATH' , PHPWG_PLUGINS_PATH . REPLYTO_DIR . '/'); |
---|
| 17 | |
---|
[15645] | 18 | add_event_handler('init', 'replyto_init'); |
---|
[11252] | 19 | |
---|
[15645] | 20 | function 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 | } |
---|
[11252] | 29 | |
---|
| 30 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.