| Line 1... |
Line 1... |
| 1 |
<div class="container userprofile">
|
1 |
<div class="container userprofile">
|
| 2 |
<div class="row">
|
2 |
<div class="row">
|
| 3 |
<?php echo $this->element('unlikemodal');?>
|
3 |
<?php echo $this->element('unlikemodal');?>
|
| 4 |
<div class="telecaller">
|
4 |
<div class="telecaller">
|
| 5 |
<?php if(!empty($user['User']['profile_pic'])):?>
|
5 |
<?php if(!empty($user['User']['profile_pic'])):?>
|
| 6 |
<img class="img img-rounded" src="<?php echo $base_url;?>app/webroot/timthumb.php?src=<?php echo $user['User']['profile_pic'];?>&h=120"/>
|
6 |
<img class="img img-rounded" src="<?php echo $base_url;?>app/webroot/timthumb.php?src=<?php echo urlencode ($user['User']['profile_pic']);?>&h=120"/>
|
| 7 |
<?php else:?>
|
7 |
<?php else:?>
|
| 8 |
<img src="<?php echo $base_url;?>app/webroot/timthumb.php?src=<?php echo $base_url;?>img/noimage.png&h=120" alt="<?php echo $user['User']['username'];?>"/>
|
8 |
<img src="<?php echo $base_url;?>app/webroot/timthumb.php?src=<?php echo $base_url;?>img/noimage.png&h=120" alt="<?php echo $user['User']['username'];?>"/>
|
| 9 |
<?php endif;?>
|
9 |
<?php endif;?>
|
| 10 |
</div>
|
10 |
</div>
|
| 11 |
<div class="editable text-center first_name" data-url="/users/edit/" data-id="<?php echo $user['User']['id'];?>" data-field="first_name" data-placeholder="Please enter your name"><?php echo !empty($user['User']['first_name'])?$user['User']['first_name']:'Your Name';?></div>
|
11 |
<div class="editable text-center first_name" data-url="/users/edit/" data-id="<?php echo $user['User']['id'];?>" data-field="first_name" data-placeholder="Please enter your name"><?php echo !empty($user['User']['first_name'])?$user['User']['first_name']:'Your Name';?></div>
|