Ignore:
Timestamp:
Jan 19, 2012, 12:30:58 PM (13 years ago)
Author:
chronos
Message:
  • Přidáno: Obecná třída pro definici zobrazovaných prvků.
  • Odstraněno: Zrušena nemodulární jednotka forms_classes.
File:
1 edited

Legend:

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

    r358 r370  
    7070}
    7171
     72class NewsView extends View
     73{
     74  function __construct()
     75  {
     76    $this->Name = 'News';
     77    $this->Title = 'Nová aktualita';
     78    $this->SubmitText = 'Vložit';
     79    AddItemOneToMany('Category', 'Kategorie', 'NewsGroup', '0');
     80    AddItemString('Title', 'Nadpis', '');
     81    AddItemText('Content', 'Obsah', '');
     82    AddItemFileName('Enclosure1', 'Přílohy (Max. velikost souboru 1 MB)', '');
     83    AddItemFileName('Enclosure2', '', '');
     84    AddItemFileName('Enclosure3', '', '');
     85  }
     86}
     87
    7288class ModuleNews extends Module
    7389{
     
    85101    $this->Dependencies = array('User', 'Log');
    86102    $this->Models = array('News', 'NewsCategory');
     103    $this->Views = array('News');
    87104  }
    88105 
Note: See TracChangeset for help on using the changeset viewer.