openstamanager/modules/utenti/components/photo.php

17 lines
443 B
PHP
Raw Normal View History

<?php
include_once __DIR__.'/../../core.php';
2019-07-30 16:51:33 +02:00
$user_photo = $user->photo;
if ($user_photo) {
echo '
<center><img src="'.$user_photo.'" class="img-responsive" alt="'.$user['username'].'" /></center>';
2019-07-30 17:15:38 +02:00
}
2019-07-30 16:51:33 +02:00
echo '
<div class="row">
<div class="col-md-12">
{[ "type": "file", "label": "'.tr('Foto utente').'", "name": "photo", "help": "'.tr('Dimensione consigliata 100x100 pixel').'" ]}
</div>
</div>';