PrintableCssIncludeInterface.php in Printer and PDF versions for Drupal 8+ 2.x
Same filename and directory in other branches
Namespace
Drupal\printableFile
src/PrintableCssIncludeInterface.phpView 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
Name | Description |
---|---|
PrintableCssIncludeInterface | Helper interface for the printable module. |