You are here

DrupalExporterInterface.php in Loft Data Grids 7.2

File

src/AKlump/LoftDataGrids/DrupalExporterInterface.php
View source
<?php

namespace AKlump\LoftDataGrids;

interface DrupalExporterInterface {

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

}

Interfaces