3
3
*
4
4
* TinyButStrong - Template Engine for Pro and Beginners
5
5
*
6
- * @version 3.15.0 for PHP 5, 7, 8
6
+ * @version 3.15.1 for PHP 5, 7, 8
7
7
* @date 2023-05-15
8
8
* @link http://www.tinybutstrong.com Web site
9
9
* @author http://www.tinybutstrong.com/onlyyou.html
@@ -61,7 +61,7 @@ class clsTbsLocator {
61
61
public $ PrmIfVar ;
62
62
public $ PrmElseVar ;
63
63
64
- // autre
64
+ // other
65
65
public $ ConvEsc ;
66
66
public $ ConvWS ;
67
67
public $ ConvJS ;
@@ -73,8 +73,12 @@ class clsTbsLocator {
73
73
74
74
public $ OpeUtf8 ;
75
75
public $ OpeAct ;
76
- public $ OpePrm ;
77
- public $ OpeArg ;
76
+ public $ OpePrm ;
77
+ public $ OpeArg ;
78
+
79
+ public $ OpeMOK ;
80
+ public $ OpeMKO ;
81
+ public $ MSave ;
78
82
79
83
// Sub-template
80
84
public $ SaveSrc ;
@@ -117,6 +121,7 @@ class clsTbsLocator {
117
121
public $ CheckPrev ;
118
122
public $ WhenFound ;
119
123
public $ WhenDefault ;
124
+ public $ WhenDefaultBeforeNS ;
120
125
public $ SectionNbr ;
121
126
public $ SectionLst ;
122
127
public $ PosDefBeg ;
@@ -4423,9 +4428,9 @@ static function f_Misc_ConvSpe(&$Loc) {
4423
4428
4424
4429
/**
4425
4430
* Return the information if parsing a form which can be either a property of a function.
4426
- * @param string $Str The form.
4427
- * @return array Information about the form.
4428
- * name: the name of the function of the property
4431
+ * @param string $Str The form. Example : 'my_func(aaa,bbb)'
4432
+ * @return array Information about the form. Example : array('name' => 'my_func', 'as_fct' => true, 'args' => array('aaa', 'bbb'),)
4433
+ * name: the name of the function of the property.
4429
4434
* as_fct: true if the form is as a function
4430
4435
* args: arguments of the function, or empty array if it's a property
4431
4436
*/
0 commit comments