Zmiany pomiędzy wersją 35 and wersją 36 dla DeployerGuide/Others/CustomWidgets
- Data i czas:
- 07/08/16 11:41:28 (8 years temu)
Legend:
- Bez zmian
- Dodane
- Usunięte
- Zmienione
-
DeployerGuide/Others/CustomWidgets
v35 v36 18 18 final class Test { 19 19 20 public static function init() { 20 public static function init($args) { 21 $args = json_decode($args, true); 21 22 22 23 // wyświetla monit eDokumentowy … … 24 25 25 26 // 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 } 27 33 28 34 } … … 32 38 print_r($args); 33 39 34 Test::init( );40 Test::init($args); 35 41 36 42 ?>