%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/notification/widgets/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/notification/widgets/Overview.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2016 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\modules\notification\widgets;
use Yii;
use humhub\widgets\JsWidget;
use humhub\modules\notification\controllers\ListController;
use yii\helpers\Url;
/**
* Notificaiton overview widget.
*
* @author buddha
* @since 1.1
*/
class Overview extends JsWidget
{
public $id = 'notification_widget';
public $jsWidget = 'notification.NotificationDropDown';
public function init()
{
$this->view->registerJsConfig('notification', [
'icon' => $this->view->theme->getBaseUrl().'/ico/notification-o.png',
'loadEntriesUrl' => Url::to(['/notification/list']),
'sendDesktopNotifications' => boolval(Yii::$app->notification->getDesktopNoficationSettings(Yii::$app->user->getIdentity())),
'text' => [
'placeholder' => Yii::t('NotificationModule.base', 'There are no notifications yet.')
]
]);
parent::init();
}
/**
* @inheritdoc
*/
public function run()
{
if (Yii::$app->user->isGuest) {
return '';
}
return $this->render('overview', [
'options' => $this->getOptions()
]);
}
public function getAttributes()
{
return [
'id' => 'notification_widget',
'class' => "btn-group"
];
}
public function getData()
{
return [
'ui-init' => ListController::getUpdates(),
];
}
}
?>