Dynamic variable
The dynamic variable feature allows you to add some content once, assigning it to a variable, and then you can use it dynamically throughout all your Tiki site by calling the variable name surrounded by percentage characters (%). Like this:
%variable14%
So To use, just click on the text in the box below (you need to be logged):
The permission tiki_p_edit_dynvar must be given to the group. On the current site tiki_p_edit_dynvar has been given to anonymous. The box above is just to help you find the text. Dynamic variables can be used in a sentence. For example, " Hello Tiki! Testing 3 2 1! " is the current value.
This can be useful for contact name, phone number, etc to be used throughout a Tiki site. If you have a multilingual Tiki, you can use dynamic variable for strings of text which are the same in all languages.
This feature is different than Dynamic Content
Usage
(1) Create a new variable, by calling it
%variable15%
This will show the text:
which indicates that this is "Not a Variable" yet. If you pass the mouse pointer over it, if will say "Click to edit dynamic variable: variable15" as follows:

(2) Click on the Nav link

Then you can add the content for that dynamic variable. Click on the update variable link, and you are done.
1.1.2. Limitations
If you create a variable containing some code which produces something "invisible", you cannot edit it later then because there's nothing to click and no admin GUI to administer them later. If you want to edit those dynamic variables, you will have to edit them directly to the database table tiki_dynamic_variables where they are stored.
Example:
You might use dynamic variable to clear the specification to float images over the text through a div plugin call, and without allowing users to write html code on wiki pages.
You can create a new variable called:
%clear%
Then add this as content:
<br class="clear" />
This way, you can just write %clear% after each paragraph where you want to ensure that the previous image don't overlap with the following heading, etc.
Example:
In the following example "2.1. First section 2.2 Second section 2.3. Third section" please mind not the pictures, but mind the position of the text above and besides the pictures:
1.1.2.1. First section
1.1.2.2. Second section
1.1.2.3. Third section
This variablewill be "invisible" on the actual wikipage.
So, if you want to edit the content of this variable afterwards, you need to edit it directly at the mysql table tiki_dynamic_variables.
1.1.3. Usage notes
1. Only lowercase letters, numbers and underscores appear to work in variable names
%Test1% Does not work %Test 1% Does not work %test% Works %test 1% Does not work %Test_1% Does not work %Test% Does not work %test1% Works %test_variable% Works
2. Some wiki syntax works within the variable content (like ((wiki links))) and some do not (like %%% embedded newlines)
3. Some html content workslike <br /> for newlines
4. Here is a sample UPDATE command for a dynamic variable that contains wiki links:
UPDATE tiki_dynamic_variables SET data = "<br><h3>Links</h3><br>((Perl Arrays))<br>((Perl Variables))<br>" WHERE name = "perl_wiki_links"
Dynamic Variables Used on This Site
Variable Name | Value | Actual Variable |
---|---|---|
%userguide% | &structure=Tiki+User+Guide |
{PARAM(name="structure")} {ELSE}{redirect page="{{page}}&structure=Tiki+User+Guide"}{PARAM}