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
Copy file name to clipboardExpand all lines: ExpressionEngine/Functions/Implementations/StringFunctions/ConcatFunction.cs
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,30 @@ public ConcatFunction() : base("concat")
11
11
{
12
12
}
13
13
14
+
/// <functionName>concat</functionName>
15
+
/// <summary>
16
+
/// Combine two or more strings, and return the combined string.
17
+
/// </summary>
18
+
/// <definition>
19
+
/// concat('$lttext1$gt', '$lttext2$gt', ...)
20
+
/// </definition>
21
+
/// <parameters>
22
+
/// <parameter def="$lttext1$gt, $lttext2$gt, ..." required="Yes" type="String">At least two strings to combine</parameter>
23
+
/// </parameters>
24
+
/// <returns>
25
+
/// <value>$lttext1$gt, $lttext2$gt, ...</value>
26
+
/// <type>String</type>
27
+
/// <description>The string created from the combined input strings. <br/><br/> Note: The length of the result must not exceed 104,857,600 characters.</description>
0 commit comments