You are here

ObjectInterface.php in Views TimelineJS integration 8.3

File

src/TimelineJS/ObjectInterface.php
View source
<?php

namespace Drupal\views_timelinejs\TimelineJS;


/**
 * Provides an interface for defining TimelineJS3 objects.
 */
interface ObjectInterface {

  /**
   * Creates an array representing the TimelineJS javascript object.
   *
   * @return mixed[]
   *   The formatted array.
   */
  public function buildArray();

}

Interfaces

Namesort descending Description
ObjectInterface Provides an interface for defining TimelineJS3 objects.