%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/gallery/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/modules/gallery/Events.php |
<?php /** * @link https://www.humhub.org/ * @copyright Copyright (c) 2015 HumHub GmbH & Co. KG * @license https://www.humhub.com/licences */ namespace humhub\modules\gallery; use humhub\modules\gallery\helpers\Url; use humhub\modules\gallery\models\forms\ContainerSettings; use humhub\modules\gallery\widgets\GallerySnippet; use Yii; /** * The event handler for the gallery module. * * @package humhub.modules.gallery * @since 1.0 * @author Sebastian Stumpf */ class Events { public static function onSpaceMenuInit($event) { try { if ($event->sender->space !== null && $event->sender->space->moduleManager->isEnabled('gallery')) { $event->sender->addItem([ 'label' => Yii::t('GalleryModule.base', 'Gallery'), 'group' => 'modules', 'url' => Url::toGalleryOverview($event->sender->space), 'icon' => '<i class="fa fa-picture-o"></i>', 'isActive' => (Yii::$app->controller->module && Yii::$app->controller->module->id == 'gallery'), ]); } } catch (\Throwable $e) { Yii::error($e); } } public static function onSpaceSidebarInit($event) { try { /** @var Module $module */ $module = Yii::$app->getModule('gallery'); if ($event->sender->space !== null && $event->sender->space->moduleManager->isEnabled('gallery')) { $event->sender->addWidget(GallerySnippet::class, ['contentContainer' => $event->sender->space], ['sortOrder' => (int) $module->settings->contentContainer($event->sender->space)->get(ContainerSettings::SETTING_SORT_ORDER)]); } } catch (\Throwable $e) { Yii::error($e); } } public static function onProfileMenuInit($event) { try { if ($event->sender->user !== null && $event->sender->user->moduleManager->isEnabled('gallery')) { $event->sender->addItem([ 'label' => Yii::t('GalleryModule.base', 'Gallery'), 'url' => Url::toGalleryOverview($event->sender->user), 'icon' => '<i class="fa fa-picture-o"></i>', 'isActive' => (Yii::$app->controller->module && Yii::$app->controller->module->id == 'gallery') ]); } } catch (\Throwable $e) { Yii::error($e); } } public static function onProfileSidebarInit($event) { try { /** @var Module $module */ $module = Yii::$app->getModule('gallery'); if ($event->sender->user !== null && $event->sender->user->moduleManager->isEnabled('gallery')) { $event->sender->addWidget(GallerySnippet::class, ['contentContainer' => $event->sender->user], ['sortOrder' => (int) $module->settings->contentContainer($event->sender->user)->get(ContainerSettings::SETTING_SORT_ORDER)]); } } catch (\Throwable $e) { Yii::error($e); } } }