Home
last modified time | relevance | path

Searched refs:potid (Results 1 – 5 of 5) sorted by path

/plugin/pot/
H A DREADME.md73 | potid | @value or #value | unique id for this pot, see below: shortcut | necessary if you want…
92 …<pot set=1 | potid=example | decimals=2 | currency=€ | sepdec=, | sepmil=. | display=none > 1100.0…
106 …ues can be retrieved and included in the formulas. To retrieve exactly one result write "{@potid}".
110 …ters "examp" in it's potid. (Keep in mind it is the sum of all above ones, the hidden ones and the…
114 …<pot potid=example_5 > {&} </pot> to sum up all pots where this pod id ("examp…
120 #### potid subsubsection
122potid" you can set individual names to each pot. If not, it will be set automatically. There is a …
130 …<pot @example_5 > 1 </pot> is identical to <pot potid=example_5 > 1 </p…
134 | @value | potid=value | |
135 | #value | potid=value_(uniqueNumber) | nice to use in tables and to sum them with {#value} later |
H A Dsyntax.php82 $potid = $this->cargo['pot'];
114 $potid = $mycargo['pot'];
115 $float = $mycargo[$potid]['settings']['float'];
118 $result = $mycargo[$potid]['output']['result'];
120 $color = $mycargo[$potid]['settings']['color-'];
122 $color = $mycargo[$potid]['settings']['color+'];
129 $potid = $mycargo['pot'];
130 $width = $mycargo[$potid]['settings']['width'];
137 $result = $mycargo[$potid]['output']['result'];
140 $type = $mycargo[$potid]['output']['type'];
[all …]
/plugin/pot/source/
H A Dcalculate.php16 $potid = $this->cargo['pot']; variable
29 $this->cargo[$potid]['output']['error'] = " error:";
71 $mdec = $this->cargo[$potid]['settings']['decimals'];
75 $this->cargo[$potid]['output']['result'] = $calculated['result']; // set the var to use it global
76 $this->cargo[$potid]['output']['formula'] = $calculated['formula'];
77 $this->cargo[$potid]['output']['type'] = $calculated['type'];
79 $this->cargo[$potid]['output']['error'] = $calculated['error'];
H A Dformat.php36 $potid = $forpotid."_".uniqid(); variable
37 $this->cargo[$potid]['output']['error'] = "potid already exists: $forpotid ";
40 $potid = $formatedsettings['potid']; variable
46 $potid = $potidval.$potidnr; variable
52 $this->cargo['pot'] = $potid; // set the var to use it global
53 $finalsettings['potid'] = $potid; // yes this value is double , why?
54 $this->cargo[$potid]['settings'] = $finalsettings; // set the var to use it global
H A Dtext.php13 $potid = $this->cargo['pot']; variable
26 $this->cargo[$potid]['output']['error'] = " error:";
67 $this->cargo[$potid]['output']['result'] = $complete; // set the var to use it global
68 $this->cargo[$potid]['output']['formula'] = $complete;
69 $this->cargo[$potid]['output']['type'] = 'text';
71 $this->cargo[$potid]['output']['error'] = 'error with text';