11 lines
502 B
PHP
11 lines
502 B
PHP
<?php
|
|
$id = $_['id'];
|
|
$wattr = isset($_['width'])?'width="'.$_['width'].'"':'';
|
|
$hattr = isset($_['height'])?'height="'.$_['height'].'"':'';
|
|
$rand = isset($_['refresh'])?'&'.rand().'='.rand():'';
|
|
?>
|
|
<img class="loading" id="contacts_details_photo" <?php echo $wattr; ?> <?php echo $hattr; ?> src="<?php echo OC_Helper::linkToAbsolute('contacts', 'photo.php'); ?>?id=<?php echo $id.$rand; ?>" />
|
|
<progress id="contacts_details_photo_progress" style="display:none;" value="0" max="100">0 %</progress>
|
|
|
|
|