Zmiany pomiędzy wersją 20 and wersją 21 dla DeployerGuide/Developer

Pokaż
Ignoruj:
Data i czas:
09/18/14 10:31:47 (10 years temu)
Autor:
WN (IP: 213.227.67.33)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Developer

    v20 v21  
    448448} 
    449449}}} 
     450 
     451== Pole daty z godziną, lub bez (CalendarInput) == 
     452{{{ 
     453#!php 
     454/* Wartość domyślna - bieżący czas */ 
     455$defaultValue = date('Y-m-d', time()); 
     456 
     457$this->adddat = new CalendarInput('yourInputName', $defaultValue); 
     458$this->adddat->top = '10px'; 
     459$this->adddat->left = '10px'; 
     460$this->adddat->width = '90px'; 
     461 
     462/* Wersja tylko z datą */ 
     463$this->adddat->dateFormat = 'y-m-d'; 
     464 
     465/* Wersja z datą i godziną */ 
     466$this->adddat->dateFormat = 'y-m-d h:i'; 
     467}}}