Dplvar: Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
m (→‎Example: clean up)
imported>FrozenPlum
m (Formatting fixes/changes)
 
(11 intermediate revisions by 2 users not shown)
Line 2: Line 2:


==Syntax==
==Syntax==
* '''Sets one''' symbolic variable name and assign a value:
<pre><nowiki>
(1) {{#dplvar:set |name1|value1|name2|value2|..|..}}
<pre>{{#dplvar:set|varname|valueofvar}}</pre>
(2) {{#dplvar:default|name|value}}
(3) {{#dplvar: name}}
</nowiki></pre>


* '''Sets multiple''' symbolic variable names '''and assigns''' values to them (one after the other):
==Effect==
<pre>
(1) assigns the values to symbolic variable names.
{{#dplvar:set|name1|value1|name2|value2|..|..}}
(2) assigns the value only if the variable is empty / has not been used so far.
</pre>
(3) returns the current value of the variable.


* '''Assigns''' a value '''only if the variable is empty / has not been used''' so far:
The variables can be set and retrieved from an article page or from templates used in that article.
<pre>
{{#dplvar:default|name|value}}
</pre>


* '''Returns''' the current value of the variable:
==Example==
<pre><nowiki>
<pre>
{{#dplvar:set|a|x|b|y|c|z}}
{{#dplvar:name}}
</pre>
{{#dplvar:default|a|aaaa}}
{{note|'''Note:''' Variables can be set and retrieved from an article, or from templates used in that article.}}
{{#dplvar:default|d|dddd}}
a={{#dplvar:a}}
b={{#dplvar:b}}
c={{#dplvar:c}}
d={{#dplvar:d}}
</nowiki></pre>
{{#dplvar:set|a|x|b|y|c|z}} {{#dplvar:default|a|aaaa}} {{#dplvar:default|d|dddd}}
a={{#dplvar:a}}
b={{#dplvar:b}}
c={{#dplvar:c}}
d={{#dplvar:d}}


<!-- Extension prefix in other languages:


==Example 1==
[[de:Erweiterung:{{subst:BASEPAGENAME}}]]
'''Part 1:'''
[[es:Extensión:{{subst:BASEPAGENAME}}]]
{{#lsth:Examples/Module: dplvar (example 1)|Part 1}}
[[fr:Extension:{{subst:BASEPAGENAME}}]]
'''Part 1 Result:'''
[[it:Estensione:{{subst:BASEPAGENAME}}]]
{{#lsth:Examples/Module: dplvar (example 1)|Part 1 Result}}
[[nl:Uitbreiding:{{subst:BASEPAGENAME}}]]
<br>
[[pl:Rozszerzenie:{{subst:BASEPAGENAME}}]]
'''Part 2:'''
[[pt::Extension:{{subst:BASEPAGENAME}}]]
{{#lsth:Examples/Module: dplvar (example 1)|Part 2}}
[[ru:Расширение:{{subst:BASEPAGENAME}}]]
{{ViewTest|Examples|Module: dplvar (example_1)}}
[[zh:Extension::{{subst:BASEPAGENAME}}]]
'''Part 2 Result:'''
-->
{{#lsth:Examples/Module: dplvar (example 1)|Part 2 Result}}

==Example 2==
'''Example:'''
{{#lsth:Examples/Module: dplvar (example_2)|Example}}
{{ViewTest|Examples|Module: dplvar (example 2)}}
'''Result:'''<!--
-->{{#lsth:Examples/Module: dplvar (example 2)|Result}}

[[Category:Other Modules]]

Latest revision as of 03:04, 21 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}}
Note: Variables can be set and retrieved from an article, 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

Example: {{#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").

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