aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Render/Comanche.php
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-08-24 17:42:59 -0700
committerredmatrix <mike@macgirvin.com>2016-08-24 17:42:59 -0700
commitf1fbcd7c02bb06e262b60fd40594c04e1c871b66 (patch)
treecac1d6c38e9b166799b7285b559220852db1e574 /Zotlabs/Render/Comanche.php
parent5c32f42fe986d2312cfbee9f8c52375af6a602b8 (diff)
downloadvolse-hubzilla-f1fbcd7c02bb06e262b60fd40594c04e1c871b66.tar.gz
volse-hubzilla-f1fbcd7c02bb06e262b60fd40594c04e1c871b66.tar.bz2
volse-hubzilla-f1fbcd7c02bb06e262b60fd40594c04e1c871b66.zip
some more complex test scenarios for comanche conditionals: equals x, not equals x, in_array, and array_key_exists
Diffstat (limited to 'Zotlabs/Render/Comanche.php')
-rw-r--r--Zotlabs/Render/Comanche.php44
1 files changed, 40 insertions, 4 deletions
diff --git a/Zotlabs/Render/Comanche.php b/Zotlabs/Render/Comanche.php
index 820897ee9..ff5aa7140 100644
--- a/Zotlabs/Render/Comanche.php
+++ b/Zotlabs/Render/Comanche.php
@@ -103,14 +103,50 @@ class Comanche {
function test_condition($s) {
- // This is extensible. The first version of variable testing supports tests of the form
+ // This is extensible. The first version of variable testing supports tests of the forms:
+ // [if $config.system.foo == baz] which will check if get_config('system','foo') is the string 'baz';
+ // [if $config.system.foo != baz] which will check if get_config('system','foo') is not the string 'baz';
+ // You may check numeric entries, but these checks are evaluated as strings.
+ // [if $config.system.foo {} baz] which will check if 'baz' is an array element in get_config('system','foo')
+ // [if $config.system.foo {*} baz] which will check if 'baz' is an array key in get_config('system','foo')
// [if $config.system.foo] which will check for a return of a true condition for get_config('system','foo');
// The values 0, '', an empty array, and an unset value will all evaluate to false.
- if(preg_match("/[\$]config[\.](.*?)/",$s,$matches)) {
- $x = explode('.',$s);
- if(get_config($x[1],$x[2]))
+ if(preg_match('/[\$]config[\.](.*?)\s\=\=\s(.*?)$/',$s,$matches)) {
+ $x = explode('.',$matches[1]);
+ if(get_config(trim($x[0]),trim($x[1])) == trim($matches[2]))
return true;
+ return false;
+ }
+ if(preg_match('/[\$]config[\.](.*?)\s\!\=\s(.*?)$/',$s,$matches)) {
+ $x = explode('.',$matches[1]);
+ if(get_config(trim($x[0]),trim($x[1])) != trim($matches[2]))
+ return true;
+ return false;
+ }
+
+ if(preg_match('/[\$]config[\.](.*?)\s\{\}\s(.*?)$/',$s,$matches)) {
+ $x = explode('.',$matches[1]);
+ $y = get_config(trim($x[0]),trim($x[1]));
+ if(is_array($y) && in_array(trim($matches[2]),$y))
+ return true;
+ return false;
+ }
+
+ if(preg_match('/[\$]config[\.](.*?)\s\{\*\}\s(.*?)$/',$s,$matches)) {
+ $x = explode('.',$matches[1]);
+ $y = get_config(trim($x[0]),trim($x[1]));
+ if(is_array($y) && array_key_exists(trim($matches[2]),$y))
+ return true;
+ return false;
+ }
+
+
+ if(preg_match('/[\$]config[\.](.*?)/',$s,$matches)) {
+ $x = explode('.',$matches[1]);
+ if(get_config(trim($x[0]),trim($x[1])))
+ return true;
+ return false;
}
return false;