%PDF- %PDF-
| Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/space/notifications/ |
| Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/space/notifications/Invite.php |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2017 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\modules\space\notifications;
use Yii;
use yii\bootstrap\Html;
use humhub\modules\notification\components\BaseNotification;
/**
* If an user was invited to a workspace, this notification is fired.
*
* @since 0.5
*/
class Invite extends BaseNotification
{
/**
* @inheritdoc
*/
public $moduleId = 'space';
/**
* @inheritdoc
*/
public $viewName = 'invite';
/**
* @inheritdoc
*/
public $markAsSeenOnClick = false;
/**
* @inheritdoc
*/
public function category()
{
return new SpaceMemberNotificationCategory;
}
/**
* @inheritdoc
*/
public function getSpace()
{
return $this->source;
}
/**
* @inheritdoc
*/
public function getUrl()
{
return $this->source->createUrl('/space/space/about');
}
/**
* @inheritdoc
*/
public function getMailSubject()
{
return $this->getInfoText($this->originator->displayName, $this->getSpace()->displayName);
}
/**
* @inheritdoc
*/
public function html()
{
return $this->getInfoText(Html::tag('strong',
Html::encode($this->originator->displayName)), Html::tag('strong',
Html::encode($this->getSpace()->displayName)));
}
private function getInfoText($displayName, $spaceName)
{
return Yii::t('SpaceModule.notification', '{displayName} invited you to the space {spaceName}', [
'{displayName}' => $displayName,
'{spaceName}' => $spaceName
]);
}
}