diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-10-10 11:26:15 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2019-10-29 13:20:07 +0100 |
commit | d88b93c919b6bf7db1853ec91a68996e07a75ba4 (patch) | |
tree | 7a772701db1d79858530dad5ff786baa780b5ce1 /apps/files/lib/Event | |
parent | 1c13c52acffeac59b0ef5d156a9a5bc36e611619 (diff) | |
download | nextcloud-server-d88b93c919b6bf7db1853ec91a68996e07a75ba4.tar.gz nextcloud-server-d88b93c919b6bf7db1853ec91a68996e07a75ba4.zip |
Add LoadSidebar event
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/lib/Event')
-rw-r--r-- | apps/files/lib/Event/LoadSidebar.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/apps/files/lib/Event/LoadSidebar.php b/apps/files/lib/Event/LoadSidebar.php new file mode 100644 index 00000000000..8892bbe0f5b --- /dev/null +++ b/apps/files/lib/Event/LoadSidebar.php @@ -0,0 +1,31 @@ +<?php +declare(strict_types=1); +/** + * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> + * + * @author Roeland Jago Douma <roeland@famdouma.nl> + * + * @license GNU AGPL version 3 or any later version + * + * 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/>. + * + */ + +namespace OCA\Files\Event; + +use OCP\EventDispatcher\Event; + +class LoadSidebar extends Event { + +} |