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