Dplvar: Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
imported>FrozenPlum
m (Prior issue requiring {{purgenote}} seems to have resolved, remove it)
imported>FrozenPlum
(Update with examples that can be mucked with and saved in user sandbox)
Line 23: Line 23:
{{note|The variables can be set and retrieved from an article page or from templates used in that article.}}
{{note|The variables can be set and retrieved from an article page or from templates used in that article.}}


==Example==
==Example 1==
'''Part 1:'''
<pre>
{{#lsth:Examples/Module: dplvar (example 1)|Part 1}}
{{#dplvar:set|a|x|b|y|c|<!--empty-->}} {{#dplvar:default|a|aaaa}} {{#dplvar:default|c|cccc}} {{#dplvar:default|d|dddd}}
'''Part 1 Result:'''
</pre>
{{#lsth:Examples/Module: dplvar (example 1)|Part 1 Result}}
{{#dplvar:set|a|x|b|y|c|<!--empty-->}} {{#dplvar:default|a|aaaa}} {{#dplvar:default|c|cccc}} {{#dplvar:default|d|dddd}}
<br>
'''Result:'''
'''Part 2:'''
* a={{#dplvar:a}}
{{#lsth:Examples/Module: dplvar (example 1)|Part 2}}
* b={{#dplvar:b}}
{{ViewTest|Examples|Module: dplvar (example_1)}}
* c={{#dplvar:c}}
'''Part 2 Result:'''
* d={{#dplvar:d}}
{{#lsth:Examples/Module: dplvar (example 1)|Part 2 Result}}



'''Notes:'''
==Example 2==
* Variable "c" was set to "cccc" because it was set but with an empty note (empty value).
{{#lsth:Examples/Module: dplvar (example_2)|Example}}
* Variable "d" was set to "dddd" because it was not already set.
{{ViewTest|Examples|Module: dplvar (example 2)}}
'''Part 1 Result:'''
{{#lsth:Examples/Module: dplvar (example 2)|Result}}


[[Category:Other Modules]]
[[Category:Other Modules]]

Revision as of 00:33, 11 April 2023

Manual dplvar

Syntax

Sets one symbolic variable name and assign a value:

{{#dplvar:set|varname|valueofvar}}

Sets multiple symbolic variable names and assigns values to them (one after the other):

{{#dplvar:set|name1|value1|name2|value2|..|..}}

Assigns a value only if the variable is empty / has not been used so far:

{{#dplvar:default|name|value}}

Returns the current value of the variable:

{{#dplvar:name}}
The variables can be set and retrieved from an article page or from templates used in that article.

Example 1

Part 1: {{#lsth:Examples/Module: dplvar (example 1)|Part 1}} Part 1 Result: {{#lsth:Examples/Module: dplvar (example 1)|Part 1 Result}}
Part 2: {{#lsth:Examples/Module: dplvar (example 1)|Part 2}}

Page Template:ViewTest/style.css must have content model "Sanitized CSS" for TemplateStyles (current model is "plain text").

Part 2 Result: {{#lsth:Examples/Module: dplvar (example 1)|Part 2 Result}}


Example 2

{{#lsth:Examples/Module: dplvar (example_2)|Example}}

Page Template:ViewTest/style.css must have content model "Sanitized CSS" for TemplateStyles (current model is "plain text").

Part 1 Result: {{#lsth:Examples/Module: dplvar (example 2)|Result}}