Ignore:
Timestamp:
May 18, 2013, 8:21:50 PM (11 years ago)
Author:
chronos
Message:
  • Upraveno: Některé formulářové typy přesunuty do jednotlivých modulů.
  • Přidáno: Moduly Customer, Task a Stock.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/News/News.php

    r533 r538  
    3939    parent::Start();
    4040    $this->System->RegisterPage('aktuality', 'PageNews');
     41    $this->System->FormManager->RegisterClass('News', array(
     42      'Title' => 'Nová aktualita',
     43      'Table' => 'News',
     44      'Items' => array(
     45        'Category' => array('Type' => 'TNewsCategory', 'Caption' => 'Kategorie', 'Default' => 0),
     46        'Title' => array('Type' => 'String', 'Caption' => 'Nadpis', 'Default' => ''),
     47        'Content' => array('Type' => 'Text', 'Caption' => 'Obsah', 'Default' => ''),
     48        'Date' => array('Type' => 'Date', 'Caption' => 'Datum', 'Default' => ''),
     49        'Author' => array('Type' => 'String', 'Caption' => 'Autor', 'Default' => ''),
     50        'Enclosure' => array('Type' => 'String', 'Caption' => 'Přílohy', 'Default' => ''),
     51        'User' => array('Type' => 'TUser', 'Caption' => 'Uživatel', 'Default' => ''),
     52        'IP' => array('Type' => 'String', 'Caption' => 'IP adresa', 'Default' => '', 'ReadOnly' => true),
     53        'Link' => array('Type' => 'Hyperlink', 'Caption' => 'Odkaz', 'Default' => ''),
     54      ),
     55    ));
     56    $this->System->FormManager->RegisterClass('NewsCategory', array(
     57      'Title' => 'Kategorie aktualit',
     58      'Table' => 'NewsCategory',
     59      'Items' => array(
     60        'Caption' => array('Type' => 'String', 'Caption' => 'Titulek', 'Default' => ''),
     61        'RSS' => array('Type' => 'Hyperlink', 'Caption' => 'Zdroj RSS', 'Default' => ''),
     62        'Permission' => array('Type' => 'Boolean', 'Caption' => 'Veřejné upravitelné', 'Default' => ''),
     63        'Sequence' => array('Type' => 'Integer', 'Caption' => 'Pořadí', 'Default' => ''),
     64        'Group' => array('Type' => 'Integer', 'Caption' => 'Skupina', 'Default' => ''),
     65      ),
     66    ));
     67   
    4168  }
    4269 
Note: See TracChangeset for help on using the changeset viewer.