Commit fdb53872b385c6d189131a4d266bd772774901d5
1 parent
b1d50569
Exists in
master
and in
111 other branches
formattage
Showing
1 changed file
with
15 additions
and
5 deletions
Show diff stats
php/classes/DerivedParamMgr.php
... | ... | @@ -30,11 +30,21 @@ class DerivedParamMgr extends AmdaObjectMgr |
30 | 30 | $this->contentRootId = 'myDataParam-treeRootNode'; |
31 | 31 | $this->contentRootTag = 'myDataList'; |
32 | 32 | //node attributes and object XML tags |
33 | - $this->attributes = array('name' => '', 'size' => ' ', 'format' => '', 'desc' => '', 'mask' => '', 'plottype' => ''); | |
34 | - // + tags in object XML | |
35 | - $this->optionalAttributes = array('vi' => 'undefined', 'realvar' => '', 'fillvalue' => -1.e31, 'units' => 'undefined', | |
36 | - 'ytitle' => 'undefined', 'file' => '', | |
37 | - 'type' => '', 'size' => '', 'minsampling' => ''); | |
33 | + $this->attributes = array( 'name' => '', | |
34 | + 'size' => ' ', | |
35 | + 'format' => '', | |
36 | + 'desc' => '', | |
37 | + 'mask' => '', | |
38 | + 'plottype' => ''); | |
39 | + $this->optionalAttributes = array('vi' => 'undefined', | |
40 | + 'realvar' => '', | |
41 | + 'fillvalue' => -1.e31, | |
42 | + 'units' => 'undefined', | |
43 | + 'ytitle' => 'undefined', | |
44 | + 'file' => '', | |
45 | + 'type' => '', | |
46 | + 'size' => '', | |
47 | + 'minsampling' => ''); | |
38 | 48 | $this->objTagName = 'mydata'; |
39 | 49 | $this->id_prefix = 'wsd_'; |
40 | 50 | $this->type = 'myDataParam'; |
... | ... |