Changeset 507 for trunk/form_classes.php


Ignore:
Timestamp:
Apr 1, 2013, 7:14:59 PM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Generování nastavení sítě. Generování front Queue nyní pracuje s přiřazením služeb k zařízením a podsítím.
  • Opraveno: Zjišťování adresáře souborů na disku dle id adresáře.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/form_classes.php

    r502 r507  
    150150    ),
    151151    'ItemActions' => array(
    152       array('Caption' => 'Stáhnout', 'URL' => '/FileDownload.php?download'),
     152      array('Caption' => 'Stáhnout', 'URL' => '/file?download'),
    153153    ),
    154154  ),
     
    456456      'BillingPeriodLastDate' => array('Type' => 'Date', 'Caption' => 'Datum poslední fakturace', 'Default' => ''),
    457457      'NetworkSegment' => array('Type' => 'TNetworkSegment', 'Caption' => 'Úsek sítě', 'Default' => '', 'Null' => true),
    458       'Hire' => array('Type' => 'Integer', 'Caption' => 'Nájem', 'Default' => '0', 'Suffix' => 'Kč'),
    459458      'Blocked' => array('Type' => 'Boolean', 'Caption' => 'Blokování', 'Default' => '0'),
    460459      'PayDay' => array('Type' => 'Integer', 'Caption' => 'Den placení', 'Default' => '0', 'Suffix' => 'den'),
     
    557556      'Member' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => '0'),
    558557      'Location' => array('Type' => 'TMember', 'Caption' => 'Umístění', 'Default' => '0'),
     558      'Service' => array('Type' => 'TServiceCustomerRel', 'Caption' => 'Služba', 'Default' => '', 'Null' => true),
    559559      'Used' => array('Type' => 'Boolean', 'Caption' => 'Použito', 'Default' => '1'),
    560560      'Online' => array('Type' => 'Boolean', 'Caption' => 'Běží', 'Default' => '0', 'ReadOnly' => true),
     
    810810  'News' => array(
    811811    'Title' => 'Nová aktualita',
    812     'Table' => '',
    813     'SubmitText' => 'Vložit',
     812    'Table' => 'News',
    814813    'Items' => array(
    815814      'Category' => array('Type' => 'TNewsCategory', 'Caption' => 'Kategorie', 'Default' => 0),
    816815      'Title' => array('Type' => 'String', 'Caption' => 'Nadpis', 'Default' => ''),
    817816      'Content' => array('Type' => 'Text', 'Caption' => 'Obsah', 'Default' => ''),
    818       'Enclosure1' => array('Type' => 'File', 'Caption' => 'Přílohy (Max. velikost souboru 1 MB)', 'Default' => ''),
    819       'Enclosure2' => array('Type' => 'File', 'Caption' => '', 'Default' => ''),
    820       'Enclosure3' => array('Type' => 'File', 'Caption' => '', 'Default' => ''),
     817      'Date' => array('Type' => 'Date', 'Caption' => 'Datum', 'Default' => ''),
     818      'Author' => array('Type' => 'String', 'Caption' => 'Autor', 'Default' => ''),
     819      'Enclosure' => array('Type' => 'String', 'Caption' => 'Přílohy', 'Default' => ''),
     820      'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => ''),
     821      'IP' => array('Type' => 'String', 'Caption' => 'IP adresa', 'Default' => '', 'ReadOnly' => true),
     822      'Link' => array('Type' => 'Hyperlink', 'Caption' => 'Odkaz', 'Default' => ''),
     823    ),
     824  ),
     825  'NewsCategory' => array(
     826    'Title' => 'Kategorie aktualit',
     827    'Table' => 'NewsCategory',
     828    'Items' => array(
     829      'Caption' => array('Type' => 'String', 'Caption' => 'Titulek', 'Default' => ''),
     830      'RSS' => array('Type' => 'Hyperlink', 'Caption' => 'Zdroj RSS', 'Default' => ''),
     831      'Permission' => array('Type' => 'Boolean', 'Caption' => 'Veřejné upravitelné', 'Default' => ''),
     832      'Sequence' => array('Type' => 'Integer', 'Caption' => 'Pořadí', 'Default' => ''),
     833      'Group' => array('Type' => 'Integer', 'Caption' => 'Skupina', 'Default' => ''),
    821834    ),
    822835  ),
Note: See TracChangeset for help on using the changeset viewer.