You are here

public function ExportDataInterface::find in Loft Data Grids 6.2

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

Find a value in the dataset of the current page

Parameters

mixed $value:

mixed $key: (Optional) Defaults to NULL. Set this to constrain the search by key.

int $results: (Optional) Defaults to 1. The number of results to return. Enter 0 for no limit.

int $direction: (Optional) Defaults to 0. 0 to search from beginning, 1 to search backward from end.

Return value

array

  • Keys are the pointers.
  • Values are an array of fields in the current pointer
1 method overrides ExportDataInterface::find()
ExportData::find in vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/ExportData.php
Find a value in the dataset of the current page

File

vendor/aklump/loft_data_grids/src/AKlump/LoftDataGrids/ExportDataInterface.php, line 284

Class

ExportDataInterface
Interface ExportDataInterface

Namespace

AKlump\LoftDataGrids

Code

public function find($value, $key = NULL, $results = 1, $direction = 0);