forked from GNUsocial/gnu-social
[PLUGIN] Remove Test plugin
This commit is contained in:
parent
86b9f7d7a1
commit
0230dd04df
@ -1,15 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace Plugin\Test\Controller;
|
|
||||||
|
|
||||||
use App\Core\Controller;
|
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
|
||||||
|
|
||||||
class TestController extends Controller
|
|
||||||
{
|
|
||||||
public function __invoke(Request $request)
|
|
||||||
{
|
|
||||||
return new Response('<html style="background: #333; color: #ccc"> Test controller </div>');
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
// {{{ License
|
|
||||||
// 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/>.
|
|
||||||
// }}}
|
|
||||||
|
|
||||||
namespace Plugin\Test;
|
|
||||||
|
|
||||||
use App\Core\Module;
|
|
||||||
use App\Core\Router\RouteLoader;
|
|
||||||
use Plugin\Test\Controller\TestController;
|
|
||||||
|
|
||||||
class Test extends Module
|
|
||||||
{
|
|
||||||
public function onTest(string $foo)
|
|
||||||
{
|
|
||||||
var_dump('Event handled: ' . $foo);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function onAddRoute(RouteLoader $r)
|
|
||||||
{
|
|
||||||
$r->connect('test_foo', '/foo', TestController::class);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,15 +0,0 @@
|
|||||||
info:
|
|
||||||
name: 'Example'
|
|
||||||
version: '0.1'
|
|
||||||
author: 'Hugo Sales'
|
|
||||||
homepage: '{project_url}'
|
|
||||||
description: |
|
|
||||||
Test plugin
|
|
||||||
Description can use multiple lines
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
database:
|
|
||||||
- 'table1': 'r'
|
|
||||||
- 'table2': 'rw'
|
|
||||||
filesystem:
|
|
||||||
- 'folder': 'rw'
|
|
Loading…
Reference in New Issue
Block a user