Showing 7 of 587 result(s)
“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...
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...
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...
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...
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...
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 ;...
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 ;