11 lines
		
	
	
		
			285 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			285 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| if (Yii::$app->user->getIsGuest()) {
 | |
|     echo \yii\helpers\Html::a('Login', ['/user/security/login']);
 | |
|     echo \yii\helpers\Html::a('Registration', ['/user/registration/register']);
 | |
| } else {
 | |
|     echo \yii\helpers\Html::a('Logout', ['/user/security/logout']);
 | |
| }
 | |
| 
 | |
| echo $content;
 |