PHP Класс OpenSkill\Datatable\Providers\QueryBuilderProvider

Наследование: implements OpenSkill\Datatable\Providers\Provider
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
__construct ( Builder $query ) CollectionProvider constructor.
prepareForProcessing ( OpenSkill\Datatable\Queries\QueryConfiguration $queryConfiguration, array $columnConfiguration ) : mixed Here the DTQueryConfiguration is passed to prepare the provider for the processing of the request.
process ( ) : ResponseData This method should process all configurations and prepare the underlying data for the view. It will arrange the data and provide the results in a DTData object.

Приватные методы

Метод Описание
compileColumnNames ( ) Get a list of all the column names for the SELECT query.
compileColumnQuery ( ) : Builder When a global query is being performed (ie, a query against a single column)
compileGlobalQuery ( ) : Builder When a global (single) search has been done against data in the datatable.
compileQuery ( ) : Builder Will compile the collection into the final collection where operations like search and order can be applied.
createQueryForColumn ( OpenSkill\Datatable\Columns\ColumnConfiguration $column, $searchValue ) : Builder Create the query w/ QueryBuilder
getColumnFromName ( string $name ) : OpenSkill\Datatable\Columns\ColumnConfiguration Get the requested column configuration from the name of a column
getTotalNumberOfRows ( ) : integer Get the total number of rows for the original query.
limitQuery ( ) Will limit a query based on the start and length given
sortQuery ( ) Will sort the query based on the given datatable query configuration.

Описание методов

__construct() публичный Метод

CollectionProvider constructor.
public __construct ( Builder $query )
$query Illuminate\Database\Query\Builder The query to base the built query on

prepareForProcessing() публичный Метод

This will only be called when the DTProvider needs to handle the request. It will never be called when the DTProvider does not need to handle the request.
public prepareForProcessing ( OpenSkill\Datatable\Queries\QueryConfiguration $queryConfiguration, array $columnConfiguration ) : mixed
$queryConfiguration OpenSkill\Datatable\Queries\QueryConfiguration
$columnConfiguration array
Результат mixed

process() публичный Метод

It will be called after {@link #prepareForProcessing} has been called and needs to return the processed data in a DTData object so the Composer can further handle the data.
public process ( ) : ResponseData
Результат OpenSkill\Datatable\Data\ResponseData The processed data