RendererInterface.php in Forena Reports 8
Namespace
Drupal\forena\FrxPlugin\RendererFile
src/FrxPlugin/Renderer/RendererInterface.phpView source
<?php
/**
* Created by PhpStorm.
* User: metzlerd
* Date: 3/25/2016
* Time: 11:16 AM
*/
namespace Drupal\forena\FrxPlugin\Renderer;
use Drupal\forena\FrxPlugin\Document\DocumentInterface;
use Drupal\forena\Report;
use DOMNode;
interface RendererInterface {
public function __construct(Report $report, DocumentInterface $doc = NULL);
public function initReportNode(DOMNode $domNode);
public function render();
}
Interfaces
Name | Description |
---|---|
RendererInterface |