SnippetBuilderInterface.php in Hotjar 8
Same filename and directory in other branches
Namespace
Drupal\hotjarFile
src/SnippetBuilderInterface.phpView source
<?php
namespace Drupal\hotjar;
/**
* Interface SnippetBuilderInterface.
*
* @package Drupal\hotjar
*/
interface SnippetBuilderInterface {
/**
* Prepares directory for and saves snippet files based on current settings.
*
* @return bool
* Whether the files were saved.
*/
public function createAssets();
/**
* Implements hook_page_attachment().
*/
public function pageAttachment(array &$attachments);
}
Interfaces
Name | Description |
---|---|
SnippetBuilderInterface | Interface SnippetBuilderInterface. |