/
var
/
www
/
vhosts
/
ihelp.ro
/
httpdocs
/
templates
/
cell
/
Admin
/
InfoUserBlock
/
/var/www/vhosts/ihelp.ro/httpdocs/templates/cell/Admin/InfoUserBlock
mkdir
upload
Name
Size
Mode
Actions
display.php
1891
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/httpdocs/templates/cell/Admin/InfoUserBlock/display.php
(1891B)
<div class="row"> <div class="col-xs-6 col-lg-12"> <strong scope="row"><?php echo __('ID'); ?></strong> <p><?php echo '#' . $this->Number->format($user->id); ?></p> <strong scope="row"><?php echo __('Role'); ?></strong> <p><?php echo $user->role->name; ?></p> <strong scope="row"><?php echo __('Full name'); ?></strong> <p><?php echo $user->profile ? h($user->profile->full_name) : __('No profile'); ?></p> <strong scope="row"><?php echo __('Phone'); ?></strong> <p><?php echo $user->profile ? $user->profile->phone : __('No profile'); ?></p> <strong scope="row"><?php echo __('Email'); ?></strong> <p><?php echo h($user->email); ?></p> </div> <div class="col-xs-6 col-lg-12"> <strong scope="row"><?php echo __('Created'); ?></strong> <p><?php echo h($user->created); ?></p> <p> <label scope="row"><?php echo __('Is Active'); ?> <span> <i class="fa <?php echo ($user->is_active) ? 'fa-check-circle text-success ' : 'fa-times-circle text-danger'; ?>"></i> </span> </label> </p> <p> <label scope="row"><?php echo __('Contact phone'); ?> <span> <i class="fa <?php echo $user->profile ? ($user->profile->contact_phone ? 'fa-check-circle text-success ' : 'fa-times-circle text-danger') : __('No profile'); ?>"></i> </span> </label> </p> <p> <label scope="row"><?php echo __('Contact email'); ?> <span> <i class="fa <?php echo $user->profile ? ($user->profile->contact_email ? 'fa-check-circle text-success ' : 'fa-times-circle text-danger') : __('No profile'); ?>"></i> </span> </label> </p> </div> </div>
Save
cmd:
run