Search

Showing 7 of 587 result(s)

/tidal-starter-kit/v1/license#content-terms-and-conditions

“This License” refers to version 3 of the GNU General Public License. “Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. “The Program” refers to any copyrightable work licensed under this...

/tidal-starter-kit/v1/license#content-6-conveying-non-source-forms

You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or...

/meerkat/exporting-comments

Comments can be exported from within the Statamic Control Panel by selecting the "Comments" menu item. Once the Meerkat Comments page has loaded, you will find the export options in the top-right corner of your screen:The following data formats...

/blade-parser/v1/querying-document-nodes#content-alloftype

Finds all nodes of the provided type. Argument Description $type The type to search. 1 <?php 2   3 use Stillat\BladeParser\Nodes\NodeCollection ; 4   5 public function allOfType ( 6 string $type 7 ) : NodeCollection ; Example Use 1 <?php 2   3 use...

/blade-parser/v1/querying-document-nodes#content-allnotoftype

Finds all nodes that are not of the provided type. Argument Description $type The type to search. 1 <?php 2   3 use Stillat\BladeParser\Nodes\NodeCollection ; 4   5 public function allNotOfType ( 6 string $type 7 ) : NodeCollection ; Example Use 1...

/blade-parser/v1/querying-document-nodes#content-firstoftype

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

/blade-parser/v1/querying-document-nodes#content-hasanyoftype

Tests if the document contains any node of the provided type. Argument Description $type The desired type. 1 <?php 2   3 public function hasAnyOfType ( 4 string $type 5 ) : bool ;