<<O>> Difference Topic SetGetPlugin (7 - 2018-07-06 - TWikiContributor) |
SetGetPlugin<-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SetGetPlugin
Introduction
Use
Alternatives to this plugin:
Syntax RulesSET{"name" value="..."} -- set a variable
GET{"name"} -- get a variable
SETGETDUMP{...} -- dump variables
JSON Objects
JSON A JSON object can contain:
A JSON object can be nested to any depth. Using SET and GET it is possible to store and retrieve JSON objects, and parts thereof using a JSON path. A JSON path describes the path to an object within a JSON object. JSON objects are useful in advanced TWiki applications that use JavaScript and Ajax calls. This plugin makes it easy to store and manipulate JSON objects.
Note: The CPAN:JSON
SET a JSON Object
The syntax to set a JSON object is
Setting a JSON object returns an empty string. In case of a parse error, the named variable contains the error message starting with
An optional
GET a JSON Object
The syntax to get a JSON object is
GET returns the JSON object or an object within it. The format depends on the type of object:
JSON ExamplesExample to set, modify and get a JSON object:
Example to set and get a JSON array of hashes object, using JSON path with
SET/GET Examples
Set several timesA variable can be set and used several times.
Search and save result
A SEARCH result can be assigned to a variable for later use. This can be useful for performance reasons if you need the result multiple times. The result can also be post-processed, such as with a
Last topic viewIn a topic, set a variable to save the current using the remember flag. Add also a GET before the SET, it will show the time the topic has last been viewed.
Remember my moodThis example shows how you can remember the mood of users. The form shows a picklist to select a mood. The mood is stored persistently per user, and shown.
REST InterfaceVariables can also be set and retrieved by invoking a REST (REpresentational State Transfer) request on the TWiki server using the rest script. To persistently remember the state of interactive browser-based JavaScript applications, you can set and get variables using this REST interface via Ajax calls. The rest script requires authentication, e.g. the user agent is prompted to authenticate if needed. rest/SetGetPlugin/set -- set a variable
To set a variable call
Example:
rest/SetGetPlugin/get -- get a variable
To get a variable call
Plugin Installation InstructionsThis plugin is pre-installed. TWiki administrators can upgrade the plugin as needed on the TWiki server.
<--/twistyPlugin twikiMakeVisibleInline-->
<--/twistyPlugin-->
Plugin Info
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<--/twistyPlugin twikiMakeVisibleInline--> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<--/twistyPlugin-->
Related Topics: VarSET, VarGET, VarSETGETDUMP, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin |
<<O>> Difference Topic SetGetPlugin (6 - 2015-07-09 - TWikiContributor) |
SetGetPlugin<-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SetGetPlugin | |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < | |||||||||||||||||||||||||||||||
> > | |||||||||||||||||||||||||||||||
Page contents
Set and get variables and JSON objects in topics, optionally persistently across topic views
Introduction | |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < | Use %SET{}% to store arbitrary text in a named variable, and reuse it with %GET{}% later on within the topic or an included topics. By default, variables live only during topic rendering time, e.g. they do not persist between topic views. It is also possible to remember the variables between topic views, however they are not version controlled like other content in TWiki. | ||||||||||||||||||||||||||||||
> > | Use %SET{}% to store a JSON object or arbitrary text in a named variable, and reuse it with %GET{}% later on within the topic or an included topic. By default, variables live only during topic rendering time, e.g. they do not persist between topic views. It is also possible to make variables persist, e.g. to remember them between topic views. | ||||||||||||||||||||||||||||||
%SET{}% and %GET{}% can be nested inside other TWiki variables and get handled as expected, e.g. inside out, and left to right. | |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < | Alternatives to this plugin are: | ||||||||||||||||||||||||||||||
> > | Alternatives to this plugin: | ||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
Syntax RulesSET{"name" value="..."} -- set a variable
| |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < | ![]()
| ||||||||||||||||||||||||||||||
> > | ![]()
| ||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
GET{"name"} -- get a variable
SETGETDUMP{...} -- dump variables
| |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
JSON Objects
JSON A JSON object can contain:
A JSON object can be nested to any depth. Using SET and GET it is possible to store and retrieve JSON objects, and parts thereof using a JSON path. A JSON path describes the path to an object within a JSON object. JSON objects are useful in advanced TWiki applications that use JavaScript and Ajax calls. This plugin makes it easy to store and manipulate JSON objects.
Note: The CPAN:JSON
SET a JSON Object
The syntax to set a JSON object is
Setting a JSON object returns an empty string. In case of a parse error, the named variable contains the error message starting with
An optional
GET a JSON Object
The syntax to get a JSON object is
GET returns the JSON object or an object within it. The format depends on the type of object:
JSON ExamplesExample to set, modify and get a JSON object:
Example to set and get a JSON array of hashes object, using JSON path with
| ||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < | Examples | ||||||||||||||||||||||||||||||
> > | SET/GET Examples | ||||||||||||||||||||||||||||||
Set several timesA variable can be set and used several times.
Search and save result
A SEARCH result can be assigned to a variable for later use. This can be useful for performance reasons if you need the result multiple times. The result can also be post-processed, such as with a
Last topic view | |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < | In a topic, set a variable with the remember flag set that stores the current time. Add also a GET before the SET, it will show the time the topic has last been viewed. | ||||||||||||||||||||||||||||||
> > | In a topic, set a variable to save the current using the remember flag. Add also a GET before the SET, it will show the time the topic has last been viewed. | ||||||||||||||||||||||||||||||
Remember my moodThis example shows how you can remember the mood of users. The form shows a picklist to select a mood. The mood is stored persistently per user, and shown.
REST InterfaceVariables can also be set and retrieved by invoking a REST (REpresentational State Transfer) request on the TWiki server using the rest script. To persistently remember the state of interactive browser-based JavaScript applications, you can set and get variables using this REST interface via Ajax calls. The rest script requires authentication, e.g. the user agent is prompted to authenticate if needed. rest/SetGetPlugin/set -- set a variable
To set a variable call
| |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
Example:
http://amazedbygrace.org/bin/rest/SetGetPlugin/set?name=rest-test;value=This+is+REST;remember=1 rest/SetGetPlugin/get -- get a variable
To get a variable call
| |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
Example:
http://amazedbygrace.org/bin/rest/SetGetPlugin/get?name=rest-test;default=rest-test+variable+not+found | |||||||||||||||||||||||||||||||
Deleted: | |||||||||||||||||||||||||||||||
< < | Plugin Settings
<--/twistyPlugin twikiMakeVisibleInline-->
Plugin settings are stored as preferences variables. To reference a plugin setting write %<plugin>_<setting>% , i.e. %NEWPLUGIN_SHORTDESCRIPTION%
<--/twistyPlugin--> | ||||||||||||||||||||||||||||||
Plugin Installation InstructionsThis plugin is pre-installed. TWiki administrators can upgrade the plugin as needed on the TWiki server. | |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > | |||||||||||||||||||||||||||||||
<--/twistyPlugin twikiMakeVisibleInline-->
| |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
<--/twistyPlugin-->
Plugin Info | |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
<--/twistyPlugin twikiMakeVisibleInline--> | |||||||||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
<--/twistyPlugin-->
| |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||||||||
< < | Related Topics: VarSET, VarGET, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin | ||||||||||||||||||||||||||||||
> > | Related Topics: VarSET, VarGET, VarSETGETDUMP, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin | ||||||||||||||||||||||||||||||
<<O>> Difference Topic SetGetPlugin (5 - 2013-01-29 - TWikiContributor) |
SetGetPlugin<-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SetGetPlugin
Introduction
Use
Alternatives to this plugin are:
Syntax RulesSET{"name" value="..."} -- set a variable
GET{"name"} -- get a variable
SETGETDUMP{...} -- dump variables
Examples
Set several timesA variable can be set and used several times.
Search and save result
A SEARCH result can be assigned to a variable for later use. This can be useful for performance reasons if you need the result multiple times. The result can also be post-processed, such as with a
Last topic viewIn a topic, set a variable with the remember flag set that stores the current time. Add also a GET before the SET, it will show the time the topic has last been viewed.
Remember my moodThis example shows how you can remember the mood of users. The form shows a picklist to select a mood. The mood is stored persistently per user, and shown.
REST InterfaceVariables can also be set and retrieved by invoking a REST (REpresentational State Transfer) request on the TWiki server using the rest script. To persistently remember the state of interactive browser-based JavaScript applications, you can set and get variables using this REST interface via Ajax calls. The rest script requires authentication, e.g. the user agent is prompted to authenticate if needed. rest/SetGetPlugin/set -- set a variable
To set a variable call
Example:
rest/SetGetPlugin/get -- get a variable
To get a variable call
Plugin Settings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | <--/twistyPlugin twikiMakeVisibleInline--> | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Plugin settings are stored as preferences variables. To reference a plugin setting write %<plugin>_<setting>% , i.e. %NEWPLUGIN_SHORTDESCRIPTION%
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | <--/twistyPlugin--> | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Plugin Installation Instructions | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < | Note: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the TWiki server. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | This plugin is pre-installed. TWiki administrators can upgrade the plugin as needed on the TWiki server. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | <--/twistyPlugin twikiMakeVisibleInline--> | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | <--/twistyPlugin--> | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Plugin Info | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | mode="div"
showlink="Show Change History http://amazedbygrace.org/pub/TWiki/TWikiDocGraphics/toggleopen.gif"
hidelink="Hide Change History ![]()
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > | </> <--/twistyPlugin--> | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Related Topics: VarSET, VarGET, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin |
<<O>> Difference Topic SetGetPlugin (4 - 2012-11-13 - TWikiContributor) |
SetGetPlugin<-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SetGetPlugin
Introduction
Use
Alternatives to this plugin are:
Syntax RulesSET{"name" value="..."} -- set a variable
GET{"name"} -- get a variable
SETGETDUMP{...} -- dump variables
Examples
Set several timesA variable can be set and used several times.
Search and save result
A SEARCH result can be assigned to a variable for later use. This can be useful for performance reasons if you need the result multiple times. The result can also be post-processed, such as with a
Last topic viewIn a topic, set a variable with the remember flag set that stores the current time. Add also a GET before the SET, it will show the time the topic has last been viewed.
Remember my moodThis example shows how you can remember the mood of users. The form shows a picklist to select a mood. The mood is stored persistently per user, and shown.
REST InterfaceVariables can also be set and retrieved by invoking a REST (REpresentational State Transfer) request on the TWiki server using the rest script. To persistently remember the state of interactive browser-based JavaScript applications, you can set and get variables using this REST interface via Ajax calls. The rest script requires authentication, e.g. the user agent is prompted to authenticate if needed. rest/SetGetPlugin/set -- set a variable
To set a variable call
Example:
rest/SetGetPlugin/get -- get a variable
To get a variable call
Plugin Settings
Plugin settings are stored as preferences variables. To reference a plugin setting write
Plugin Installation InstructionsNote: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the TWiki server.
Plugin Info
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Related Topics: VarSET, VarGET, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin |
<<O>> Difference Topic SetGetPlugin (3 - 2012-09-26 - TWikiContributor) |
SetGetPlugin<-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SetGetPlugin
Introduction
Use
Alternatives to this plugin are:
Syntax RulesSET{"name" value="..."} -- set a variable
GET{"name"} -- get a variable
SETGETDUMP{...} -- dump variables
Examples
Set several timesA variable can be set and used several times.
Search and save result
A SEARCH result can be assigned to a variable for later use. This can be useful for performance reasons if you need the result multiple times. The result can also be post-processed, such as with a
Last topic viewIn a topic, set a variable with the remember flag set that stores the current time. Add also a GET before the SET, it will show the time the topic has last been viewed.
Remember my moodThis example shows how you can remember the mood of users. The form shows a picklist to select a mood. The mood is stored persistently per user, and shown.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
REST InterfaceVariables can also be set and retrieved by invoking a REST (REpresentational State Transfer) request on the TWiki server using the rest script. To persistently remember the state of interactive browser-based JavaScript applications, you can set and get variables using this REST interface via Ajax calls. The rest script requires authentication, e.g. the user agent is prompted to authenticate if needed. rest/SetGetPlugin/set -- set a variable
To set a variable call
Example:
rest/SetGetPlugin/get -- get a variable
To get a variable call
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Plugin Settings
Plugin settings are stored as preferences variables. To reference a plugin setting write
Plugin Installation InstructionsNote: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the TWiki server.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Plugin Info
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Changed: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
< < |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Added: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> > |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Related Topics: VarSET, VarGET, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin |
<<O>> Difference Topic SetGetPlugin (2 - 2012-01-15 - TWikiContributor) |
SetGetPlugin<-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SetGetPlugin
Introduction
Use
Alternatives to this plugin are:
Syntax RulesSET{"name" value="..."} -- set a variable
| |||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||
GET{"name"} -- get a variable
| |||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||
> > |
SETGETDUMP{...} -- dump variables
| ||||||||||||||||||||||||
Examples
Set several timesA variable can be set and used several times.
Search and save result
A SEARCH result can be assigned to a variable for later use. This can be useful for performance reasons if you need the result multiple times. The result can also be post-processed, such as with a
Last topic viewIn a topic, set a variable with the remember flag set that stores the current time. Add also a GET before the SET, it will show the time the topic has last been viewed.
Remember my moodThis example shows how you can remember the mood of users. The form shows a picklist to select a mood. The mood is stored persistently per user, and shown.
Plugin Settings
Plugin settings are stored as preferences variables. To reference a plugin setting write
Plugin Installation InstructionsNote: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the TWiki server.
| |||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||
Plugin Info
| |||||||||||||||||||||||||
Changed: | |||||||||||||||||||||||||
< < |
| ||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||
| |||||||||||||||||||||||||
Added: | |||||||||||||||||||||||||
> > |
| ||||||||||||||||||||||||
Related Topics: VarSET, VarGET, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin |
<<O>> Difference Topic SetGetPlugin (1 - 2011-07-10 - TWikiContributor) |
SetGetPlugin<-- Contributions to this plugin are appreciated. Please update the plugin page at http://twiki.org/cgi-bin/view/Plugins/SetGetPlugin
Introduction
Use
Alternatives to this plugin are:
Syntax RulesSET{"name" value="..."} -- set a variable
GET{"name"} -- get a variable
Examples
Set several timesA variable can be set and used several times.
Search and save result
A SEARCH result can be assigned to a variable for later use. This can be useful for performance reasons if you need the result multiple times. The result can also be post-processed, such as with a
Last topic viewIn a topic, set a variable with the remember flag set that stores the current time. Add also a GET before the SET, it will show the time the topic has last been viewed.
Remember my moodThis example shows how you can remember the mood of users. The form shows a picklist to select a mood. The mood is stored persistently per user, and shown.
Plugin Settings
Plugin settings are stored as preferences variables. To reference a plugin setting write
Plugin Installation InstructionsNote: You do not need to install anything on the browser to use this plugin. The following instructions are for the administrator who installs the plugin on the TWiki server.
Plugin Info
Related Topics: VarSET, VarGET, TWikiPlugins, DeveloperDocumentationCategory, AdminDocumentationCategory, TWikiPreferences, SpreadSheetPlugin |
Revision r7 - 2018-07-06 - 05:44:14 - TWikiContributor | Edit |