Changeset 56 for trunk/www/view/news.php


Ignore:
Timestamp:
Aug 4, 2009, 9:53:52 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Definice formulářů a tabulek ze souboru form_classes.php byly rozděleny do odpovídajících souborů ve složce view.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/view/news.php

    r55 r56  
    33class NewsView extends Module
    44{
     5  var $ItemFormClass = array(
     6    'Title' => 'Aktualita',
     7    'Table' => 'News',
     8    'Items' => array(
     9      'Title' => array('Type' => 'String', 'Caption' => 'Titulek', 'Default' => ''),
     10      'Content' => array('Type' => 'Text', 'Caption' => 'Obsah', 'Default' => ''),
     11    ),
     12  );
     13 
    514  function AddFinish()
    615  {
    716    if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
    817    {
    9       $Form = new Form('News');
     18      $Form = new Form($this->ItemFormClass);
    1019      $Form->LoadValuesFromForm();
    1120      $Form->Values['Time'] = 'NOW()';
     
    2130    if($this->System->Modules['User']->User['Role'] >= USER_ROLE_ADMINISTRATOR)
    2231    {
    23       $Form = new Form('News');
     32      $Form = new Form($this->ItemFormClass);
    2433      $Form->OnSubmit = '?Action=NewsAdd2';
    2534      $Output = $Form->ShowEditForm();
Note: See TracChangeset for help on using the changeset viewer.