ChartServiceInterface.php in Charts 5.0.x
Same filename and directory in other branches
Namespace
Drupal\charts\ServicesFile
src/Services/ChartServiceInterface.phpView source
<?php
namespace Drupal\charts\Services;
/**
* Interface ChartServiceInterface.
*
* @package Drupal\charts\Services
*/
interface ChartServiceInterface {
/**
* Gets the currently selected Library.
*
* @return string
* Library selected.
*/
public function getLibrarySelected();
/**
* Sets the previously set Library with the newly selected library value.
*
* @param string $librarySelected
* Library selected.
*/
public function setLibrarySelected($librarySelected = '');
}
Interfaces
Name | Description |
---|---|
ChartServiceInterface | Interface ChartServiceInterface. |