Search

Showing 7 of 1,975 result(s)

/meerkat/licensing#content-indemnity

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...

/site-essentials-for-statamic/v1/antlers-modifiers/se_str_finish-modifier

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 ( '.' ) / }}

/site-essentials-for-statamic/v1/antlers-tags/se-current-view#content-se-current-view-tag

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 / }}

/blade-parser/v1/compiling-workspaces#content-withpathformatter

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...

/blade-parser/v1/documents#content-setdirectivenames

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...

/blade-parser/v1/documents#content-getnodes

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 ;

/blade-parser/v1/documents#content-tostring

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...