You are here

public function ExportData::getValue in Loft Data Grids 6.2

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

Return the value of a single column, single row by key.

Note this is identical to self::getCurrent($key) however more intuitively named, so it makes more sense.

Parameters

string $key:

Return value

mixed

Overrides ExportDataInterface::getValue

File

vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/ExportData.php, line 255

Class

ExportData

Namespace

AKlump\LoftDataGrids

Code

public function getValue($key) {
  return $this
    ->getCurrent($key);
}