gnu-social/plugins/Autocomplete/AutocompletePlugin.php

64 lines
2.0 KiB
PHP
Raw Normal View History

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>
* @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
2009-08-25 23:29:56 +01:00
* @link http://status.net/
2009-08-06 19:39:59 +01:00
*/
2009-08-25 23:42:34 +01:00
if (!defined('STATUSNET')) {
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()) {
$current_user = common_current_user();
$js_string = <<<EOT
2009-08-06 19:39:59 +01:00
<script type="text/javascript">
2009-08-06 20:19:33 +01:00
var current_user = { id: '$current_user->id' };
2009-08-06 19:39:59 +01:00
</script>
EOT;
2009-08-06 20:19:33 +01:00
$action->raw($js_string);
$action->script('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.pack.js');
$action->script('plugins/Autocomplete/Autocomplete.js');
}
2009-08-06 19:39:59 +01:00
}
2009-08-25 23:29:56 +01:00
function onEndShowStatusNetStyles($action)
2009-08-06 19:39:59 +01:00
{
2009-08-06 20:19:33 +01:00
if (common_logged_in()) {
$action->cssLink('plugins/Autocomplete/jquery-autocomplete/jquery.autocomplete.css');
}
2009-08-06 19:39:59 +01:00
}
}
?>