forked from ProThoughts/q2a-hashtagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qa-plugin.php
22 lines (20 loc) · 852 Bytes
/
qa-plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
Plugin Name: Hashtagger
Plugin URI: https://dl.dropboxusercontent.com/u/13439369/q2a/hashtagger.zip
Plugin Description: Automatically convert hashtags (#some_word) and mentions (@some_name) into HTML links
Plugin Version: 1.1
Plugin Date: 2014-02-12
Plugin Author: Victor
Plugin Author URI: http://www.question2answer.org/qa/user/Victor
Plugin License: GPLv2
Plugin Minimum Question2Answer Version: 1.6.3
Plugin Update Check URI: https://dl.dropboxusercontent.com/u/13439369/q2a/hashtagger.txt
*/
if (!defined('QA_VERSION')) {
header('Location: ../../');
exit;
}
qa_register_plugin_phrases('qa-hashtagger-lang-*.php', 'plugin_hashtagger');
qa_register_plugin_module('filter', 'qa-hashtagger.php', 'qa_hashtagger', 'Hashtagger');
qa_register_plugin_module('event', 'qa-hashtagger.php', 'qa_hashtagger', 'Hashtagger');