Showing 10 of 2,044 results.

What Gets Logged

…nd time a particular combination of search terms was, last, searched, index, : The Statamic search index used to perform the search, term, : The user's search term. This, may, include personal information, if the user entered personal information...

Automatic noindex, nofollow | Overview

…the <meta name="robots" content="noindex, nofollow"> tag to all pages when the site is not running in production mode. This behavior can be changed by modifying guard_index_follow configuration value within the config/site_essentials/metadata.php...

Querying Nodes on Node Instances | Querying Document Nodes

Querying nodes on ComponentNode or DirectiveNode instances requires structural analysis. Node queries will be evaluated against each nodes list of children nodes. If this is your intent, be sure to call the resolveStructures() method on the...

hasDirective | Querying Document Nodes

Tests if the document contains a directive with the provided name. Argument Description $name The directive name. 1 <?php 2 3 public function hasDirective ( 4 string $ name 5 ) : bool ; Example Use 1 <?php 2 3 use Stillat \ BladeParser \ Document...

firstOfType | Querying Document Nodes

…ocates the first instance of the provided node type in the document. Argument Description $type The node type. 1 <?php 2 3 use Stillat \ BladeParser \ Nodes \ AbstractNode ; 4 5 public function firstOfType ( 6 string $ type 7 ) : AbstractNode ;...