Zmiany pomiędzy wersją 35 and wersją 36 dla DeployerGuide/Others/CustomWidgets

Pokaż
Ignoruj:
Data i czas:
07/08/16 11:41:28 (8 years temu)
Autor:
szczurrek (IP: 79.188.124.105)
Komentarz:

--

Legend:

Bez zmian
Dodane
Usunięte
Zmienione
  • DeployerGuide/Others/CustomWidgets

    v35 v36  
    1818final class Test { 
    1919 
    20     public static function init() { 
     20    public static function init($args) { 
     21        $args = json_decode($args, true);         
    2122 
    2223        // wyświetla monit eDokumentowy 
     
    2425 
    2526        // wyświetla monit JavaScriptowy alert 
    26         JScript::add('alert(666)');         
     27        JScript::add('alert(666)');   
     28 
     29        //Jeśli ma zostać odświeżona lista to na końcu naszego skryptu dodajemy 
     30        if (isset($args['js_after'])) { 
     31            JScript::add($args['js_after']); 
     32        } 
    2733 
    2834    } 
     
    3238print_r($args); 
    3339 
    34 Test::init(); 
     40Test::init($args); 
    3541 
    3642?>