Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | |
0.00% |
0 / 4 |
||
| <?php | |
| use yii\helpers\Html; | |
| /* @var $this yii\web\View */ | |
| /* @var $user common\models\User */ | |
| /* @var $participant common\models\Participant */ | |
| /* @var $meeting common\models\Meeting */ | |
| $confirmLink = Yii::$app->urlManager->createAbsoluteUrl(['meeting/confirm-meeting', 'token' => $meeting->guest_confirmation_token]); | |
| $meetingsLink = Yii::$app->urlManager->createAbsoluteUrl(['meeting/index']); | |
| ?> | |
| Hello <?= Html::encode($user->fullname) ?>, | |
| Follow the link below to confirm your meeting invitation: | |
| <?= Html::a(Html::encode($confirmLink), $confirmLink) ?> | |
| You can also dismis any meeting invitation on website: | |
| <?= Html::a(Html::encode($meetingsLink), $meetingsLink) ?> |