12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- 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' =>
-
- _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;
- }
- }
|