. * * @category Plugin * @package StatusNet * @author Craig Andrews * @author Paul Irish * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } class TabFocusPlugin extends Plugin { const PLUGIN_VERSION = '2.0.0'; function __construct() { parent::__construct(); } function onEndShowScripts($action) { $action->script($this->path('tabfocus.js')); } public function onPluginVersion(array &$versions): bool { $versions[] = array('name' => 'TabFocus', 'version' => self::PLUGIN_VERSION, 'author' => 'Craig Andrews and Paul Irish', 'homepage' => GNUSOCIAL_ENGINE_REPO_URL . 'tree/master/plugins/TabFocus', 'rawdescription' => // TRANS: Plugin description. _m('TabFocus changes the notice form behavior so that, while in the text area, pressing the tab key focuses the "Send" button, matching the behavior of Twitter.')); return true; } }