Zmiany pomiędzy wersją 109 and wersją 110 dla DeployerGuide/Developer

Pokaż
Ignoruj:
Data i czas:
07/14/15 10:19:53 (9 years temu)
Autor:
MK (IP: 79.188.124.105)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Developer

    v109 v110  
    546546 
    547547== Jak wywołać mechanizm wgrywania pliku na serwer == 
     548 
     549{{{ 
     550class MyDialog extends DialogForm { 
     551 
     552        public function create() { 
     553                $this->file = new SimpleUploader($this->name.'file'); 
     554                $this->file->left = '10px'; 
     555                $this->file->top = '10px'; 
     556                $this->file->width = '300px'; 
     557                $this->file->height = '20px'; 
     558                 
     559                $this->add($this->file, 'file'); 
     560        } 
     561         
     562        public function save() { 
     563                $data = $this->getData(); 
     564                 
     565                if (file_exists($data['file'])) { 
     566                        $fileContent = file_get_content($data['file']); 
     567                } 
     568        } 
     569} 
     570}}} 
     571 
     572Zaawansowane uzycie: 
    548573{{{ 
    549574// widget do wgrywania pliku w klasie np MyClassCustomWidget 
     
    596621 
    597622 
     623 
    598624== Podstawowy kod/nagłówki dla skryptów typu standalone/front controller == 
    599625