2009-08-06 19:39:59 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2009-08-25 23:29:56 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-08-06 19:39:59 +01:00
|
|
|
*
|
|
|
|
* Plugin to enable nickname completion in the enter status box
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Plugin
|
2009-08-25 23:29:56 +01:00
|
|
|
* @package StatusNet
|
2009-08-06 19:39:59 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
2010-05-27 23:26:47 +01:00
|
|
|
* @copyright 2010 Free Software Foundation http://fsf.org
|
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
2009-08-06 19:39:59 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:29:56 +01:00
|
|
|
* @link http://status.net/
|
2009-08-06 19:39:59 +01:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-08-06 19:39:59 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
class AutocompletePlugin extends Plugin
|
|
|
|
{
|
|
|
|
function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onEndShowScripts($action){
|
2009-08-06 20:19:33 +01:00
|
|
|
if (common_logged_in()) {
|
2011-03-10 02:01:41 +00:00
|
|
|
$action->element('span', array('id' => 'autocomplete-api',
|
|
|
|
'data-url' => common_local_url('autocomplete')));
|
2013-09-16 21:10:08 +01:00
|
|
|
$action->script($this->path('js/autocomplete.go.js'));
|
2009-08-06 20:19:33 +01:00
|
|
|
}
|
2009-08-06 19:39:59 +01:00
|
|
|
}
|
|
|
|
|
2009-09-14 02:44:17 +01:00
|
|
|
function onRouterInitialized($m)
|
|
|
|
{
|
2013-09-29 14:28:25 +01:00
|
|
|
$m->connect('main/autocomplete/suggest', array('action'=>'autocomplete'));
|
2009-09-14 02:44:17 +01:00
|
|
|
}
|
|
|
|
|
2015-06-06 21:04:01 +01:00
|
|
|
function onPluginVersion(array &$versions)
|
2010-01-09 23:58:40 +00:00
|
|
|
{
|
|
|
|
$versions[] = array('name' => 'Autocomplete',
|
2013-11-01 12:51:41 +00:00
|
|
|
'version' => GNUSOCIAL_VERSION,
|
2010-01-09 23:58:40 +00:00
|
|
|
'author' => 'Craig Andrews',
|
|
|
|
'homepage' => 'http://status.net/wiki/Plugin:Autocomplete',
|
|
|
|
'rawdescription' =>
|
2011-04-06 13:57:48 +01:00
|
|
|
// TRANS: Plugin description.
|
2011-04-06 14:07:23 +01:00
|
|
|
_m('The autocomplete plugin adds autocompletion for @ replies.'));
|
2010-01-09 23:58:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
2009-08-06 19:39:59 +01:00
|
|
|
}
|