Documentation/Index/RegisterCorrespondenceDialogScripts: CustomScriptTestAfterOpen.inc

Plik CustomScriptTestAfterOpen.inc, 289 bytes (dodany przez TS, 9 years temu)
xx
Line 
1<?php
2
3final class CustomScriptTestAfterOpen {
4
5
6
7    public static function init($args) {
8
9        if (isset($args['container'])) {
10            $args['container']->elements['target']->setValue(4);
11        }
12
13    }
14
15}
16
17if (isset($args)) {
18    CustomScriptTestAfterOpen::init($args);
19}
20
21?>