Browse Source
feat(Navigation): emit dedicated event for loading additional entries
feat(Navigation): emit dedicated event for loading additional entries
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>pull/49904/head
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
6 changed files with 42 additions and 0 deletions
-
2apps/files/lib/App.php
-
1lib/composer/composer/autoload_classmap.php
-
1lib/composer/composer/autoload_static.php
-
4lib/private/NavigationManager.php
-
17lib/public/Navigation/Events/LoadAdditionalEntriesEvent.php
-
17tests/lib/NavigationManagerTest.php
@ -0,0 +1,17 @@ |
|||
<?php |
|||
|
|||
declare(strict_types=1); |
|||
|
|||
/** |
|||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors |
|||
* SPDX-License-Identifier: AGPL-3.0-or-later |
|||
*/ |
|||
namespace OCP\Navigation\Events; |
|||
|
|||
use OCP\EventDispatcher\Event; |
|||
|
|||
/** |
|||
* @since 31.0.0 |
|||
*/ |
|||
class LoadAdditionalEntriesEvent extends Event { |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue