You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Values which are assigned to the template and used directly will be casted to string. For assigned objects you can call methods which return a value. Afterwards the returned value will be casted to string.
112
+
Values which are assigned to the template and used directly will be casted to string.
113
+
For assigned objects you can call methods which return a value.
114
+
Afterwards the returned value will be casted to string.
115
+
As constant values integer numbers, strings in single quotes and booleans (true, false) are supported.
113
116
114
117
```html
115
118
{{ simpleValue }}
116
119
{{ myObject.getProperty() }}
120
+
{{ 'Hello World' }}
121
+
{{ 12345 }}
117
122
```
118
123
119
124
Your provided data may be a nested array which can be resolved in the template:
@@ -210,7 +215,8 @@ Multiple if statements can be nested. To invert an if condition the keyword *not
210
215
211
216
### function calls
212
217
213
-
The methods which are called on assigned objects can take parameters. Allowed parameters are variables taken out of the current scope or another function call on an object available in the current scope.
218
+
The methods which are called on assigned objects can take parameters.
219
+
Allowed parameters are variables taken out of the current scope or another function call on an object available in the current scope as well as the supported constant values integer numbers, strings in single quotes and booleans (true, false).
214
220
As an example a ViewHelper-Object can be assigned to the render process and methods of the ViewHelper can be used in the template for advanced logic inside the template.
215
221
216
222
```php
@@ -222,19 +228,19 @@ use PHPMicroTemplate\Render;
222
228
223
229
class ViewHelper
224
230
{
225
-
public function count(iterable $list)
231
+
public function count(iterable $list): int
226
232
{
227
233
return count($list);
228
234
}
229
235
230
-
public function sum(...$values)
236
+
public function sum(float ...$values): float
231
237
{
232
238
return array_sum($values);
233
239
}
234
240
235
-
public function toBold($label)
241
+
public function weight(string $label, int $weight = 400): string
0 commit comments