You are here

DrupalExporterInterface.php in Loft Data Grids 8

File

src/DrupalExporterInterface.php
View source
<?php

namespace Drupal\loft_data_grids;

interface DrupalExporterInterface {

  /**
   * Return a renderable build array
   *
   * @param null $page_id
   *
   * @return array
   */
  public function build($page_id = null);

}

Interfaces