/
var
/
www
/
vhosts
/
ihelp.ro
/
_OLD
/
templates
/
Profiles
/
/var/www/vhosts/ihelp.ro/_OLD/templates/Profiles
mkdir
upload
Name
Size
Mode
Actions
add.php
1116
0644
edit
dl
rm
edit.php
940
0644
edit
dl
rm
view.php
1801
0644
edit
dl
rm
Edit:
/var/www/vhosts/ihelp.ro/_OLD/templates/Profiles/view.php
(1801B)
<?php /** * @var \App\View\AppView $this * @var \App\Model\Entity\Profile $profile */ ?> <div class="row"> <aside class="column"> <div class="side-nav"> <?php echo $this->element('sidebar_dashboard'); ?> </div> </aside> <div class="column-responsive column-80"> <div class="profiles view content"> <?= $this->Html->link(__('Edit Profile'), ['action' => 'edit'], ['class' => 'button float-right']) ?> <table> <tr> <th><?= __('User') ?></th> <td><?= $profile->has('user') ? $profile->user->uuid : '' ?></td> </tr> <tr> <th><?= __('First Name') ?></th> <td><?= h($profile->first_name) ?></td> </tr> <tr> <th><?= __('Last Name') ?></th> <td><?= h($profile->last_name) ?></td> </tr> <tr> <th><?= __('Image') ?></th> <td><?= h($profile->image) ?></td> </tr> <tr> <th><?= __('Address') ?></th> <td><?= h($profile->address) ?></td> </tr> <tr> <th><?= __('Phone') ?></th> <td><?= $this->Number->format($profile->phone) ?></td> </tr> <tr> <th><?= __('Created') ?></th> <td><?= h($profile->created) ?></td> </tr> <tr> <th><?= __('Modified') ?></th> <td><?= h($profile->modified) ?></td> </tr> </table> </div> </div> </div>
Save
cmd:
run