f15eba04827dde2eed79d5af9dfc99b9d14b204c
[GitHub/WoltLab/WCF.git] /
1 <?php
2 declare(strict_types=1);
3 namespace wcf\system\page\handler;
4
5 /**
6 * Implementation of the `IOnlineLocationPageHandler` and `ILookupPageHandler` interfaces
7 * and implementing the `IMenuPageHandler::isVisible()` method..
8 *
9 * @author Matthias Schmidt
10 * @copyright 2001-2018 WoltLab GmbH
11 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
12 * @package WoltLabSuite\Core\System\Page\Handler
13 * @since 3.0
14 */
15 trait TDecoratedCategoryOnlineLocationLookupPageHandler {
16 use TDecoratedCategoryLookupPageHandler;
17 use TDecoratedCategoryMenuPageHandler;
18 use TDecoratedCategoryOnlineLocationPageHandler;
19 }