SearchIndexesService
in package
implements
SearchIndexesServiceInterface
uses
BcContainerTrait
Class SearchIndexesService
Table of Contents
Interfaces
- SearchIndexesServiceInterface
- Interface SearchIndexesServiceInterface
Properties
- $SearchIndexes : SearchIndexesTable
- $SearchIndexes : SearchIndexesTable
- SearchIndexes Table
Methods
- __construct() : mixed
- SearchIndexesService constructor.
- allowPublish() : bool|int
- 公開状態確認
- batch() : bool
- 一括処理
- changePriority() : EntityInterface|null
- 優先度を変更する
- delete() : bool
- 検索インデックスを削除する
- get() : EntityInterface
- 索引を取得する
- getIndex() : Query
- 一覧データを取得
- getService() : array<string|int, mixed>|mixed|object
- Get Service
- hasService() : bool
- Has Service
- reconstruct() : bool
- 検索インデックス再構築
- createIndexConditions() : array<string|int, mixed>
- 管理画面ページ一覧の検索条件を取得する
- parseQuery() : array<string|int, mixed>
- 検索キーワードを分解し配列に変換する
Properties
$SearchIndexes
public
SearchIndexesTable
$SearchIndexes
$SearchIndexes
SearchIndexes Table
public
SearchIndexesTable
$SearchIndexes
Methods
__construct()
SearchIndexesService constructor.
public
__construct() : mixed
Tags
allowPublish()
公開状態確認
public
allowPublish(array<string|int, mixed> $data) : bool|int
Parameters
- $data : array<string|int, mixed>
Tags
Return values
bool|intbatch()
一括処理
public
batch(string $method, array<string|int, mixed> $ids) : bool
Parameters
- $method : string
- $ids : array<string|int, mixed>
Tags
Return values
boolchangePriority()
優先度を変更する
public
changePriority(EntityInterface $target, mixed $priority) : EntityInterface|null
Parameters
- $target : EntityInterface
- $priority : mixed
Tags
Return values
EntityInterface|nulldelete()
検索インデックスを削除する
public
delete(int $id) : bool
Parameters
- $id : int
Tags
Return values
boolget()
索引を取得する
public
get(int $id) : EntityInterface
Parameters
- $id : int
Tags
Return values
EntityInterfacegetIndex()
一覧データを取得
public
getIndex([array<string|int, mixed> $queryParams = [] ]) : Query
並び順
- priority: 降順
- modified: 降順
- id: 昇順
Parameters
- $queryParams : array<string|int, mixed> = []
-
-
limit
: 取得件数 - その他、createIndexConditions を参照
-
Tags
Return values
QuerygetService()
Get Service
public
getService(mixed $service) : array<string|int, mixed>|mixed|object
Parameters
- $service : mixed
Tags
Return values
array<string|int, mixed>|mixed|objecthasService()
Has Service
public
hasService(mixed $service) : bool
Parameters
- $service : mixed
Tags
Return values
boolreconstruct()
検索インデックス再構築
public
reconstruct([int $parentContentId = null ]) : bool
Parameters
- $parentContentId : int = null
-
親となるコンテンツID
Tags
Return values
boolcreateIndexConditions()
管理画面ページ一覧の検索条件を取得する
protected
createIndexConditions(array<string|int, mixed> $options) : array<string|int, mixed>
パラメーターのカッコ内は省略形。省略形を優先する。
keyword
は、LIKE検索とし、title
と detail
を対象とする。
Parameters
- $options : array<string|int, mixed>
-
- keyword(q): 検索キーワード
- site_id(s): サイトID
- content_id(c): コンテンツID
- content_filter_id(cf): コンテンツフィルダーID
- type: コンテンツタイプ
- model(m): モデル名(エンティティ名)
- priority: 優先度
- status: 公開状態。publish もしくは 1 の場合、公開期間も加味する。
- folder_id(f): フォルダーID
Tags
Return values
array<string|int, mixed>parseQuery()
検索キーワードを分解し配列に変換する
protected
parseQuery(string $query) : array<string|int, mixed>
半角スペース、全角スペースで分解する。 エスケープ処理を行う。
Parameters
- $query : string