PHP 클래스 Newscoop\Service\Model\Search\Search

파일 보기 프로젝트 열기: sourcefabric/newscoop 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$allColumns array *
$orderBy array *

공개 메소드들

메소드 설명
addOrderBy ( Column $column ) (DO NOT CALL THIS DIRECTLY) Add an order by column for this search.
getAllColumns ( ) : array Provides all the columns registered in this search.
getOrderedBy ( ) : array Provides the columns to be ordered by in this search.
register ( Column $column ) : Column (DO NOT CALL THIS DIRECTLY) Register the column to this search.

메소드 상세

addOrderBy() 공개 메소드

(DO NOT CALL THIS DIRECTLY) Add an order by column for this search.
public addOrderBy ( Column $column )
$column Column The column to order by, must not be null or empty.

getAllColumns() 공개 메소드

Provides all the columns registered in this search.
public getAllColumns ( ) : array
리턴 array The arrays containing all the Columns registered.

getOrderedBy() 공개 메소드

The order in the array will be the order in which the columns have been specified for ordering.
public getOrderedBy ( ) : array
리턴 array The arrays containing the Columns to be ordered by.

register() 공개 메소드

(DO NOT CALL THIS DIRECTLY) Register the column to this search.
public register ( Column $column ) : Column
$column Column The column to register, must not be null or empty.
리턴 Column The same column provided, used for chaining purposes.

프로퍼티 상세

$allColumns 보호되어 있는 프로퍼티

*
protected array $allColumns
리턴 array

$orderBy 보호되어 있는 프로퍼티

*
protected array $orderBy
리턴 array