Home
last modified time | relevance | path

Searched refs:auth_expr_parse (Results 1 – 3 of 3) sorted by relevance

/plugin/ifauthex/_test/
H A Dgeneral.test.php141 $this->assertNotNull($ast = auth_expr_parse($expr));
162 auth_expr_parse($expr);
175 auth_expr_parse($expr);
189 auth_expr_parse($expr);
215 $this->assertNotNull(auth_expr_parse('()'));
220 $this->assertNotNull(auth_expr_parse(''));
249 $this->assertTrue(auth_expr_parse('user')->evaluate());
250 $this->assertFalse(auth_expr_parse('!user')->evaluate());
251 $this->assertTrue(auth_expr_parse('!user2')->evaluate());
252 $this->assertFalse(auth_expr_parse('user2')->evaluate());
[all …]
/plugin/ifauthex/
H A Dsyntax.php133 $exprOrMatch = auth_expr_parse($exprOrMatch);
/plugin/ifauthex/lib/
H A Dgrammar.php201 function auth_expr_parse($expr) { function