Same filename and directory in other branches
  1. 8.x-1.x src/ElementAttachmentInterface.php 1 comment

Namespace

Drupal\colorbox

File

src/ElementAttachmentInterface.php

View source
<?php

namespace Drupal\colorbox;


/**
 * An interface for attaching things to the built page.
 */
interface ElementAttachmentInterface {
    
    /**
     * Attach information to the page array.
     *
     * @param array $element
     *   The page array.
     */
    public function attach(array &$element);
    
    /**
     * Check if the attachment should be added to the current page.
     *
     * @return bool
     *   TRUE if the attachment should be added to the current page.
     */
    public function isApplicable();

}

Interfaces

Title Deprecated Summary
ElementAttachmentInterface An interface for attaching things to the built page.