Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 1798

Přidáno uživatelem Ondřej Fibich před více než 11 roky(ů)

Uprava:
- drobne vylepseni v rozhrani pozadavku o pripojeni

Zobrazit rozdíly:

freenetis/branches/1.1/application/i18n/cs_CZ/texts.php
'show calls of whole member' => 'Zobrazit hovory celého člena',
'show cloud' => 'Zobrazit oblast',
'show clouds' => 'Zobrazit oblasti',
'show connection requests' => 'Zobrazit požadavky o připojení',
'show details' => 'Zobrazit detaily',
'show device' => 'Zobrazit zařízení',
'show device map' => 'Zobrazit mapu zařízení',
freenetis/branches/1.1/application/controllers/members.php
__('Show devices')
);
}
// connection requests
if ($this->acl_check_view('Connection_Requests_Controller', 'request', $member->id))
{
$user_links[] = html::anchor(
'connection_requests/show_by_member/'.$member->id,
__('Show connection requests')
);
}
// user's works link
if ($member->id != 1 &&
......
$view->content->total_traffic = @$total_traffic;
$view->content->today_traffic = @$today_traffic;
$view->content->month_traffic = @$month_traffic;
$view->content->member_links = implode(' | ',$member_links);
$view->content->user_links = implode(' | ',$user_links);
$view->content->member_links = implode(' | ', $member_links);
$view->content->user_links = implode(' | ', $user_links);
$view->render(TRUE);
} // end of show function
freenetis/branches/1.1/application/views/main.php
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="format-detection" content="telephone=no">
<title><?php echo $title ?> | <?php echo $this->settings->get('title') ?></title>
<title><?php echo strip_tags($title) ?> | <?php echo $this->settings->get('title') ?></title>
<?php echo html::link('media/images/favicon.ico', 'shorcut icon', 'image/x-icon', FALSE); ?>
<?php echo html::stylesheet('media/css/style.css', 'screen') ?>
<?php echo html::stylesheet('media/css/m.style.css', 'handheld, screen and (max-device-width: 480px)') ?>
freenetis/branches/1.1/application/views/connection_requests/show.php
<th><?php echo __('State') ?></th>
<td><b><?php echo callback::connection_request_state_field($connection_request, 'state') ?></b></td>
</tr>
<?php if ($connection_request->state == Connection_request_Model::STATE_APPROVED): ?>
<?php if ($connection_request->device_id): ?>
<tr>
<th><?php echo __('Device') ?></th>
......
<td><?php echo $connection_request->device->name ?></td>
<?php endif; ?>
</tr>
<?php else: ?>
<tr>
<th><?php echo __('Device') ?></th><td><b style="color: red"><?php echo __('Deleted') ?></a></td>
</tr>
<?php endif; ?>
<?php endif; ?>
<?php if ($connection_request->device_type->id): ?>
<tr>
<th><?php echo __('Device type') ?></th>

Také k dispozici: Unified diff