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/Map/Map.php

    r519 r538  
    162162  {
    163163    parent::Start();
    164     $this->System->Pages['map'] = 'PageNetworkMap';     
     164    $this->System->Pages['map'] = 'PageNetworkMap';
     165    $this->System->FormManager->RegisterClass('MapPosition', array(
     166      'Title' => 'Pozice na mapě',
     167      'Table' => 'MapPosition',
     168      'Items' => array(
     169        'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
     170        'Latitude' => array('Type' => 'Float', 'Caption' => 'Zeměpisná šířka', 'Default' => '0'),
     171        'Longitude' => array('Type' => 'Float', 'Caption' => 'Zeměpisná výška', 'Default' => '0'),
     172      ),
     173    ));
     174   
    165175  } 
    166176}
Note: See TracChangeset for help on using the changeset viewer.