Ignore:
Timestamp:
Jan 19, 2012, 9:43:36 PM (13 years ago)
Author:
chronos
Message:
  • Přidáno: Různé knihovny pro zpracování HTML kódu, tabulek, stránkování, zasílání emailů, aj.
  • Přidáno: Kód zpracování fronty emailů přesunut z Global do modulu EmailQueue.
File:
1 edited

Legend:

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

    r370 r373  
    7070}
    7171
    72 class NewsView extends View
    73 {
    74   function __construct()
    75   {
     72class NewsView extends ViewForm
     73{
     74  function __construct($Database)
     75  {
     76    parent::__construct($Database);
    7677    $this->Name = 'News';
    7778    $this->Title = 'Nová aktualita';
    7879    $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', '', '');
     80    $this->AddItemOneToMany('Category', 'Kategorie', 'NewsGroup', '0');
     81    $this->AddItemString('Title', 'Nadpis', '');
     82    $this->AddItemText('Content', 'Obsah', '');
     83    $this->AddItemFileName('Enclosure1', 'Přílohy (Max. velikost souboru 1 MB)', '');
     84    $this->AddItemFileName('Enclosure2', '', '');
     85    $this->AddItemFileName('Enclosure3', '', '');
    8586  }
    8687}
Note: See TracChangeset for help on using the changeset viewer.