Changeset 428
- Timestamp:
- Oct 11, 2012, 2:00:38 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 25 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r421 r428 2 2 3 3 $FormClasses = array( 4 'NetworkDevice' => array( 5 'Title' => 'Síťové zařízení', 6 'Table' => 'NetworkDevice', 7 'Items' => array( 8 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 9 'Used' => array('Type' => 'Boolean', 'Caption' => 'Použito', 'Default' => '1'), 10 'Online' => array('Type' => 'Boolean', 'Caption' => 'Běží', 'Default' => '0'), 11 'LastOnline' => array('Type' => 'DateTime', 'Caption' => 'Naposledy běželo', 'Default' => ''), 12 'PermanentOnline' => array('Type' => 'Boolean', 'Caption' => 'Běží stále', 'Default' => '0'), 13 ), 14 ), 4 15 'NewPayment' => array( 5 16 'Title' => 'Nová platba', -
trunk/global.php
r427 r428 19 19 include_once('finance/bills.php'); 20 20 include_once('finance/finance.php'); 21 include_once('Common/Types/Type.php'); 21 22 22 23 $PrefixMultipliers = array … … 202 203 function GlobalInit() 203 204 { 204 global $Config, $Database, $System, $ScriptTimeStart, $ConfigFileName, $Mail ;205 global $Config, $Database, $System, $ScriptTimeStart, $ConfigFileName, $Mail, $Type; 205 206 206 207 $ScriptTimeStart = GetMicrotime(); … … 228 229 $System->AddModule(new Finance()); 229 230 $System->Modules['Finance']->LoadMonthParameters(0); 231 232 $Type = new Type($System); 230 233 } 231 234 -
trunk/page.php
r426 r428 11 11 'manualy.php' => 'Manuály', 12 12 'is' => array('', 13 'index.php' => 'Správa dat', 13 14 'topologie.php' => 'Topologie sítě', 14 'dostupnost.php' => 'Dostupnost zařízení',15 15 ), 16 16 'network.php' => 'Technické informace', -
trunk/user.php
r426 r428 259 259 } else 260 260 { 261 $this->PermissionCache[ $DbRow['Id'].'_'] = array($Module, $Operation, $ItemType, $ItemIndex);261 $this->PermissionCache[count($this->PermissionCache).'_'] = array($Module, $Operation, $ItemType, $ItemIndex); 262 262 $PermissionExists = false; 263 263 }
Note:
See TracChangeset
for help on using the changeset viewer.