Showing 10 of 2,133 results.

Next Link | General Metadata

…"next" href="..."> tag. By default it binds to the $meta_link_next variable. 1 <?php 2 3 use Stillat \ StatamicSiteEssentials \ Support \ Facades \ Metadata ; 4 5 // Adjusting the returned variable. 6 Metadata :: resolve ( ' meta_link_next ' ,...

Self Link | General Metadata

…f" href="..."> tag. By default it binds to the $current_full_url variable. 1 <?php 2 3 use Stillat \ StatamicSiteEssentials \ Support \ Facades \ Metadata ; 4 5 // Adjusting the returned variable. 6 Metadata :: resolve ( ' current_full_url ' ,...

setNodes | Blade Documents

Sets the document nodes. Sets the nodes that represent the parsed template, as well as the original document text. The original document text will be used with other features, like text extraction. Argument Description $nodes The nodes. $nodeText...

getRootStructures | Document Structures

Returns the direct document structures. This method automatically performs structural analysis. Only structures that are at the root of the document, without any parent node, will be returned. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4...

getRootSwitchStatements | Document Structures

Returns all the direct switch statements. This method automatically performs structural analysis. Only @switch statements that appear at the root of the document, without any parent nodes, will be returned. 1 <?php 2 3 use Illuminate \ Support \...

getRootForElse | Document Structures

Returns the direct for-else blocks. This method automatically performs structural analysis. Only nodes that appear at the root of the document, without any parent nodes, will be returned. 1 <?php 2 3 use Illuminate \ Support \ Collection ; 4 5...

Specifying Feed Images | RSS and Atom Feeds

Feedamic supports adding an asset image to the generated RSS/Atom feeds. Instead of adding a new field to manage this, Tidal can use one of the social media images it generated. You may specify which social media image you'd like to utilize by...

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

Laravel 5: Returning In-line Access to a Variable With with

The with is a useful utility function that can be used to simply return the provided values back to the caller. This can be used as an entry point for method chaining without the need to create temporary local variables. It is also possible to...

replyOpen Event Method | Advanced Reply Forms

The replyOpen() method is called when the reply form is being presented to the user. If you previously hid the form for some reason, or would like to animate the appearance, you can do that here. You will receive an instance of the reply form as...