diff options
author | zotlabs <mike@macgirvin.com> | 2017-01-31 15:28:25 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-01-31 15:28:25 -0800 |
commit | 732065bf13af96f680bc9874afee71c07f74e40a (patch) | |
tree | f7bacb814f9ca13dada49932778a41bdfb76e99a /Zotlabs/Render | |
parent | a6cbebe03c4c1ca66b4b55c340ebb1d369d93c3a (diff) | |
download | volse-hubzilla-732065bf13af96f680bc9874afee71c07f74e40a.tar.gz volse-hubzilla-732065bf13af96f680bc9874afee71c07f74e40a.tar.bz2 volse-hubzilla-732065bf13af96f680bc9874afee71c07f74e40a.zip |
channel export - use a selected list of functional data categories to export; this allows one to export single data sets instead of always exporting everything we know about
Diffstat (limited to 'Zotlabs/Render')
-rw-r--r-- | Zotlabs/Render/Comanche.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php index 048921670..5826063fd 100644 --- a/Zotlabs/Render/Comanche.php +++ b/Zotlabs/Render/Comanche.php @@ -99,6 +99,17 @@ class Comanche { } } + /** + * Currently supported condition variables: + * + * $config.xxx.yyy - get_config with cat = xxx and k = yyy + * $request - request uri for this page + * $observer.language - viewer's preferred language (closest match) + * $observer.address - xchan_addr or false + * $observer.name - xchan_name or false + * $observer - xchan_hash of observer or empty string + */ + function get_condition_var($v) { if($v) { $x = explode('.',$v); |