You are here

public function Exporter::getSettings in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/Exporter.php \AKlump\LoftDataGrids\Exporter::getSettings()

Return the settings object.

To set use $this->addSetting() or: $this->getSettings()->{name} = {value}

To get a single setting you will do this: $this->getSettings()->sponsors

Return value

array

Overrides ExporterInterface::getSettings

See also

addSetting($name, $value)

File

vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/Exporter.php, line 78

Class

Exporter
Class Exporter

Namespace

AKlump\LoftDataGrids

Code

public function getSettings() {
  return $this->settings;
}