2014-05-12 10:41:51 +01:00
|
|
|
<?php
|
2019-08-11 02:18:50 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The ConversationTree plugin displays conversation replies in a hierarchical
|
|
|
|
* manner like StatusNet pre-v1.0 used to.
|
2014-05-12 10:41:51 +01:00
|
|
|
*
|
2019-08-11 02:18:50 +01:00
|
|
|
* @category UI
|
|
|
|
* @package ConversationTreePlugin
|
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @copyright 2019 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2014-05-12 10:41:51 +01:00
|
|
|
*/
|
|
|
|
|
2019-08-11 02:18:50 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
2014-05-12 10:41:51 +01:00
|
|
|
|
|
|
|
class ConversationTreePlugin extends Plugin
|
|
|
|
{
|
2019-06-03 01:56:52 +01:00
|
|
|
const PLUGIN_VERSION = '2.0.0';
|
|
|
|
|
2019-08-11 02:18:50 +01:00
|
|
|
public function onStartShowConversation(Action $action, Conversation $conv, Profile $scoped = null): bool
|
|
|
|
{
|
2016-01-06 12:58:46 +00:00
|
|
|
$nl = new ConversationTree($conv->getNotices($action->getScoped()), $action);
|
2019-08-11 02:18:50 +01:00
|
|
|
$nl->show();
|
2014-05-12 10:41:51 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
public function onPluginVersion(array &$versions): bool
|
2014-05-12 10:41:51 +01:00
|
|
|
{
|
2019-08-11 02:18:50 +01:00
|
|
|
$versions[] = [
|
|
|
|
'name' => 'ConversationTree',
|
|
|
|
'version' => self::PLUGIN_VERSION,
|
|
|
|
'author' => 'Evan Prodromou, Mikael Nordfeldth',
|
2019-11-21 00:21:22 +00:00
|
|
|
'homepage' => GNUSOCIAL_ENGINE_URL,
|
2019-08-11 02:18:50 +01:00
|
|
|
'rawdescription' =>
|
|
|
|
// TRANS: Module description.
|
|
|
|
_m('Enables conversation tree view.')
|
|
|
|
];
|
2014-05-12 10:41:51 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|