Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 1831

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

Novinky:
- fixes #349: Cas pristupu u zarizeni

Zobrazit rozdíly:

freenetis/branches/1.1/db_upgrades/upgrade_1.1.0~alpha8.php
<?php defined('SYSPATH') or die('No direct script access.');
/*
* This file is part of open source system FreenetIS
* and it is released under GPLv3 licence.
*
* More info about licence can be found:
* http://www.gnu.org/licenses/gpl-3.0.html
*
* More info about project can be found:
* http://www.freenetis.org/
*
*/
/**
* This upgrade is not equal to any of previos upgrades
*
* @author Ondřej Fibich <ondrej.fibich@gmail.com>
*/
$upgrade_equal_to['1.1.0~alpha8'] = array();
/**
* Access time in device
*
* @author Ondřej Fibich <ondrej.fibich@gmail.com>
*/
$upgrade_sql['1.1.0~alpha8'] = array
(
/** Access time of device (#349) */
"ALTER TABLE `devices` ADD `access_time` DATETIME NULL DEFAULT NULL AFTER `password`",
);
freenetis/branches/1.1/application/i18n/cs_CZ/texts.php
'lack of credit' => 'Nedostatek kreditu',
'language' => 'Jazyk',
'last' => 'Poslední',
'last access time' => 'Poslední čas přístupu',
'last active at' => 'naposled aktivní v',
'last actualization at' => 'poslední aktualizace v',
'last changed author' => 'Autor poslední úpravy',
freenetis/branches/1.1/application/models/device.php
* @property integer $PPPoE_logging_in
* @property string $login
* @property string $password
* @property datetime $access_time
* @property double $price
* @property double $payment_rate
* @property date $buy_date
freenetis/branches/1.1/application/views/devices/show.php
<td><?php echo $device->buy_date ?></td>
</tr>
<?php endif; ?>
<?php if ($device->access_time): ?>
<tr>
<th><?php echo __('Last access time') ?></th>
<td><?php echo $device->access_time ?> (<?php echo callback::datetime_diff($device, 'access_time') ?>)</td>
</tr>
<?php endif ?>
<tr>
<th><?php echo __('Location address') ?></th>
<td>
<a href="<?php echo url_lang::base() ?>address_points/show/<?php echo $device->address_point->id ?>"><?php echo $device->address_point; ?></a>
freenetis/branches/1.1/version.php
* The current version of FreenetIS.
* This value must be changed by developers in a new release of FreenetIS.
*/
define('FREENETIS_VERSION', '1.1.0~alpha7');
define('FREENETIS_VERSION', '1.1.0~alpha8');

Také k dispozici: Unified diff