]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Autocomplete/AutocompletePlugin.php
Merge branch 'master' into testing
[quix0rs-gnu-social.git] / plugins / Autocomplete / AutocompletePlugin.php
index ddb0dea329d9989526f431005d89ee885aa2317b..d586631a4a09dd4542784c1c7c0c2b239c9b137c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * Laconica, the distributed open-source microblogging tool
+ * StatusNet, the distributed open-source microblogging tool
  *
  * Plugin to enable nickname completion in the enter status box
  *
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  * @category  Plugin
- * @package   Laconica
+ * @package   StatusNet
  * @author    Craig Andrews <candrews@integralblue.com>
  * @copyright 2009 Craig Andrews http://candrews.integralblue.com
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
- * @link      http://laconi.ca/
+ * @link      http://status.net/
  */
 
-if (!defined('LACONICA')) {
+if (!defined('STATUSNET') && !defined('LACONICA')) {
     exit(1);
 }
 
+require_once(INSTALLDIR.'/plugins/Autocomplete/autocomplete.php');
+
 class AutocompletePlugin extends Plugin
 {
     function __construct()
@@ -39,19 +41,35 @@ class AutocompletePlugin extends Plugin
     }
 
     function onEndShowScripts($action){
-        $js_string = <<<EOT
-<script type="text/javascript">
-var current_user = { screen_name: 'CANDREWS', id: '1' };
-</script>
-EOT;
-        $action->raw($js_string);
-        $action->script('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.pack.js');
-        $action->script('plugins/Autocomplete/Autocomplete.js');
+        if (common_logged_in()) {
+            $action->script('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.pack.js');
+            $action->script('plugins/Autocomplete/Autocomplete.js');
+        }
+    }
+
+    function onEndShowStatusNetStyles($action)
+    {
+        if (common_logged_in()) {
+            $action->cssLink('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.css');
+        }
+    }
+
+    function onRouterInitialized($m)
+    {
+        if (common_logged_in()) {
+            $m->connect('plugins/Autocomplete/autocomplete.json', array('action'=>'autocomplete'));
+        }
     }
 
-    function onEndShowLaconicaStyles($action)
+    function onPluginVersion(&$versions)
     {
-        $action->cssLink('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.css');
+        $versions[] = array('name' => 'Autocomplete',
+                            'version' => STATUSNET_VERSION,
+                            'author' => 'Craig Andrews',
+                            'homepage' => 'http://status.net/wiki/Plugin:Autocomplete',
+                            'rawdescription' =>
+                            _m('The autocomplete plugin allows users to autocomplete screen names in @ replies. When an "@" is typed into the notice text area, an autocomplete box is displayed populated with the user\'s friend\' screen names.'));
+        return true;
     }
 
 }