Helpers refactoring
This commit is contained in:
@@ -6,11 +6,11 @@
|
||||
<h3><i class="fa fa-google"></i> <?= t('Google Account') ?></h3>
|
||||
|
||||
<p class="listing">
|
||||
<?php if ($this->userSession->isCurrentUser($user['id'])): ?>
|
||||
<?php if ($this->user->isCurrentUser($user['id'])): ?>
|
||||
<?php if (empty($user['google_id'])): ?>
|
||||
<?= $this->a(t('Link my Google Account'), 'user', 'google', array(), true) ?>
|
||||
<?= $this->url->link(t('Link my Google Account'), 'user', 'google', array(), true) ?>
|
||||
<?php else: ?>
|
||||
<?= $this->a(t('Unlink my Google Account'), 'user', 'unlinkGoogle', array(), true) ?>
|
||||
<?= $this->url->link(t('Unlink my Google Account'), 'user', 'unlinkGoogle', array(), true) ?>
|
||||
<?php endif ?>
|
||||
<?php else: ?>
|
||||
<?= empty($user['google_id']) ? t('No account linked.') : t('Account linked.') ?>
|
||||
@@ -22,11 +22,11 @@
|
||||
<h3><i class="fa fa-github"></i> <?= t('Github Account') ?></h3>
|
||||
|
||||
<p class="listing">
|
||||
<?php if ($this->userSession->isCurrentUser($user['id'])): ?>
|
||||
<?php if ($this->user->isCurrentUser($user['id'])): ?>
|
||||
<?php if (empty($user['github_id'])): ?>
|
||||
<?= $this->a(t('Link my GitHub Account'), 'user', 'github', array(), true) ?>
|
||||
<?= $this->url->link(t('Link my GitHub Account'), 'user', 'github', array(), true) ?>
|
||||
<?php else: ?>
|
||||
<?= $this->a(t('Unlink my GitHub Account'), 'user', 'unlinkGitHub', array(), true) ?>
|
||||
<?= $this->url->link(t('Unlink my GitHub Account'), 'user', 'unlinkGitHub', array(), true) ?>
|
||||
<?php endif ?>
|
||||
<?php else: ?>
|
||||
<?= empty($user['github_id']) ? t('No account linked.') : t('Account linked.') ?>
|
||||
|
||||
Reference in New Issue
Block a user