Файл: adultscript-2.0.3-pro/files/mobile/templates/default/users_info.tpl.php
Строк: 81
<?php defined('_VALID') or die('Restricted Access!'); $now = time()-1800; ?>
<div data-role="content">
<?php echo $this->fetch('users_menu'); ?>
<?php echo $this->fetch('users_top'); ?>
<div class="ui-corner-all custom-corners">
<div class="ui-bar ui-bar-b">
<h3><?php echo __('info-title'); ?></h3>
</div>
<div class="ui-body ui-body-b">
<ul data-role="listview">
<li>Name: <strong><?php echo e($this->user['name']); ?></strong></li>
<li>Gender: <strong><?php echo e(ucfirst($this->user['gender'])); ?></strong></li>
<li>Relationship Status: <strong><?php echo e(ucfirst($this->user['relation'])); ?></strong></li>
<li>Interested In: <strong><?php echo e(ucfirst($this->user['interested'])); ?></strong></li>
<li>Joined: <strong><?php echo VDate::nice($this->user['join_date']); ?></strong></li>
<li>Last Login: <strong><?php if ($this->user['login_date'] != '0000-00-00'): echo VDate::nice($this->user['login_date']); else: echo 'never'; endif; ?></strong></li>
<?php if ($this->user['country'] != ''): ?>
<li>Country: <strong><?php echo e($this->user['country']); ?></strong></li>
<?php endif; if ($this->user['city'] != ''): ?>
<li>City: <strong><?php echo e($this->user['city']); ?></strong></li>
<?php endif; if ($this->user['about'] != ''): ?>
<li>About: <strong><?php echo e($this->user['about']); ?></strong></li>
<?php endif; if ($this->user['website'] != ''): ?>
<li>Website: <strong><?php echo e($this->user['website']); ?></strong></li>
<?php endif; if ($this->user['hobbies'] != ''): ?>
<li>Interests: <strong><?php echo e($this->user['hobbies']); ?></strong></li>
<?php endif; if ($this->user['movies'] != ''): ?>
<li>Favorite Movies: <strong><?php echo e($this->user['movies']); ?></strong></li>
<?php endif; if ($this->user['music'] != ''): ?>
<li>Favorite Music: <strong><?php echo e($this->user['music']); ?></strong></li>
<?php endif; if ($this->user['books'] != ''): ?>
<li>Favorite Books: <strong><?php echo e($this->user['books']); ?></strong></li>
<?php endif; if ($this->user['turn_on'] != ''): ?>
<li>Turn Ons: <strong><?php echo e($this->user['turn_on']); ?></strong></li>
<?php endif; if ($this->user['turn_off'] != ''): ?>
<li>Turn Offs: <strong><?php echo e($this->user['turn_off']); ?></strong></li>
<?php endif; ?>
</ul>
</div>
</div>
</div>