You are here

PrintableCssIncludeInterface.php in Printer and PDF versions for Drupal 8+ 8

Same filename and directory in other branches
  1. 2.x src/PrintableCssIncludeInterface.php

Namespace

Drupal\printable

File

src/PrintableCssIncludeInterface.php
View source
<?php

namespace Drupal\printable;


/**
 * Helper interface for the printable module.
 */
interface PrintableCssIncludeInterface {

  /**
   * Get the configured CSS include path for printable pages.
   *
   * @return string
   *   The include path, relative to the root of the Drupal install.
   */
  public function getCssIncludePath();

}

Interfaces

Namesort descending Description
PrintableCssIncludeInterface Helper interface for the printable module.