PHP Класс Flarum\Core\Search\SearchCriteria

Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
$actor Flarum\Core\User The user performing the search.
$query string The search query.
$sort array An array of sort-order pairs, where the column is the key, and the order is the value. The order may be 'asc', 'desc', or an array of IDs to order by.

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

Метод Описание
__construct ( User $actor, string $query, array $sort = null )

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

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

public __construct ( User $actor, string $query, array $sort = null )
$actor Flarum\Core\User The user performing the search.
$query string The search query.
$sort array An array of sort-order pairs, where the column is the key, and the order is the value. The order may be 'asc', 'desc', or an array of IDs to order by.

Описание свойств

$actor публичное свойство

The user performing the search.
public User,Flarum\Core $actor
Результат Flarum\Core\User

$query публичное свойство

The search query.
public string $query
Результат string

$sort публичное свойство

An array of sort-order pairs, where the column is the key, and the order is the value. The order may be 'asc', 'desc', or an array of IDs to order by.
public array $sort
Результат array