You are here

public function FooTable::getLibrary in FooTable 8.2

Return value

string

Overrides FooTableInterface::getLibrary

File

src/FooTable.php, line 43

Class

FooTable

Namespace

Drupal\footable

Code

public function getLibrary() {
  $library = $this->config
    ->get('plugin_type') . '_' . $this->config
    ->get('plugin_compression');
  return 'footable/footable_' . $library;
}