Просмотр файла vkclone-0.0.1/protected/modules/users/views/default/afterRegistration.php

Размер файла: 724B
<?php
$this->pageHeader = $this->pageTitle = Yii::t('Users', 'Registration done');
?>
<div class="text">
<?= Yii::t('Users', 'You successfully created an account, {name}.', array(
	'{name}' => CHtml::tag(
		'strong',
		array(),
		Yii::app()->user->record->name.(empty(Yii::app()->user->record->patronymic) ? null : ' '.Yii::app()->user->record->patronymic)
	))) ?><br />
	<strong><?= CHtml::link(Yii::t('Users', 'Go to the index page'), Yii::app()->homeUrl) ?></strong><br />
	<strong><?= CHtml::link(Yii::t('Users', 'Go to the cabinet'), array('cabinet/index')) ?></strong><br />
	<strong><?= CHtml::link(Yii::t('Users', 'Go to my page'), array('user/index', 'id' => Yii::app()->user->record->id)) ?></strong><br />
</div>