Showing 7 of 1,975 result(s)
You agree to indemnify and hold harmless Stillat, LLC for any third-party claims, actions or suits, as well as any related expenses, liabilities, damages, settlements or fees arising from your use or misuse of the Software, or a violation of any...
The se_str_finish modifier may be used to ensure a given string always ends with the provided cap. 1 {{# the value. #}} 2 {{ 'the value.' | se_str_finish ( '.' ) / }} 3 4 {{# the value. #}} 5 {{ 'the value' | se_str_finish ( '.' ) / }}
When used by itself, the se_current_view tag will output the relative path of the view currently being rendered: 1 {{# Output the relative path of the current view. #}} 2 {{ se_current_view / }}
Sets the PathFormatter implementation used by the workspace. PathFormatter implementations are used to determine what the final output file paths look like. Argument Description $formatter The path formatter. 1 <?php 2 3 use...
Sets the document's directive names. The directive names supplied to this method should match those that were used when initially parsing the input template. These directive names will be used when performing structural analysis. If you are using...
Gets the document nodes. Returns a NodeCollection instance containing the nodes that represent the parsed template. 1 <?php 2 3 use Stillat\BladeParser\Nodes\NodeCollection ; 4 5 public function getNodes () : NodeCollection ;
Returns a string representation of the document. This method will traverse every node in the document and call its corresponding toString() method. Any modifications made to the document's node will be represented in the results of this method...