freenetis-github/application/views/contacts/show_by_user.php @ c1bdc1c4
8baed187 | Michal Kliment | <h2><?php echo __('User contacts'); ?></h2><br />
|
|
<p><?php echo __('Another contact information'); ?></p><br />
|
|||
<?php if ($can_add)
|
|||
echo html::anchor('contacts/add/' . $user_id, __('Add contact'), array('title' => __('Add contact'), 'class' => 'popup_link')) . "<br /><br />" ?>
|
|||
<?php echo $grid_contacts; ?>
|
|||
c1bdc1c4 | Michal Kliment | <?php if (Settings::get('phone_invoices_enabled')): ?>
|
|
8baed187 | Michal Kliment | <br /><br />
|
|
<h2><?php echo __('Private user contacts'); ?></h2><br />
|
|||
<p><?php echo __('Private phone contacts of user, which are used in telephone invoices'); ?>.</p>
|
|||
<p><?php echo __('Contacts can be added in telephone invoices.'); ?>.</p><br />
|
|||
<?php echo html::anchor('private_phone_contacts/import/' . $user_id, __('Import contact from server Funanbol')) ?>
|
|||
<?php if (!empty($grid_private_contacts)): ?>
|
|||
<br /><br />
|
|||
<?php echo $grid_private_contacts; ?>
|
|||
c1bdc1c4 | Michal Kliment | <?php endif; ?>
|
|
<?php endif ?>
|