PagesTable
extends AppTable
in package
uses
BcContainerTrait
Class PagesTable
Table of Contents
Properties
- $Contents : ContentsTable|Table
- Contents Table
- $publishBeginField : string
- 公開開始日のフィールド AppTable::getConditionAllowPublish() で利用
- $publishEndField : string
- 公開終了日のフィールド AppTable::getConditionAllowPublish() で利用
- $publishStatusField : string
- 公開状態のフィールド AppTable::getConditionAllowPublish() で利用
- $searchIndexSaving : bool
- 検索テーブルへの保存可否
- $Sites : SitesTable|Table
- Sites Table
- $tmpEvents : array<string|int, mixed>
- 一時イベント イベントを一時にオフにする場合に対象のコールバック処理を一時的に格納する
- $_pages : mixed
- WebページURLリスト キャッシュ用
- $_publishes : mixed
- 公開WebページURLリスト キャッシュ用
- $_View : View
- View
- $__pageInsertID : int
- 最終登録ID モバイルページへのコピー処理でスーパークラスの最終登録IDが上書きされ、 コントローラーからは正常なIDが取得できないのでモバイルページへのコピー以外の場合だけ保存する
Methods
- addPrefix() : string
- テーブル名にプレフィックスを追加する
- beforeSave() : void
- Before Save
- belongsToMany() : BelongsToMany
- Belongs To Many
- changeSort() : bool
- 並び順を変更する
- copy() : EntityInterface|false
- ページデータをコピーする
- createSearchIndex() : array<string|int, mixed>|false
- 検索用データを生成する
- dispatchLayerEvent() : bool|Event
- イベントを発火
- getConditionAllowPublish() : array<string|int, mixed>
- 公開状態となっているデータを取得するための conditions 値を取得
- getMax() : int
- 指定フィールドのMAX値を取得する
- getService() : array<string|int, mixed>|mixed|object
- Get Service
- getTable() : string
- テーブルを取得
- getUrlPattern() : array<string|int, mixed>
- コンテンツのURLにマッチする候補を取得する
- hasService() : bool
- Has Service
- initialize() : void
- Initialize
- offEvent() : mixed
- イベントを一時的にオフにする
- onEvent() : mixed
- 一時的にオフにしたイベントをオンにする BcModelEventDispatcherは対象外とする
- replaceText() : string
- 機種依存文字の変換処理
- setTable() : AppTable
- テーブルをセット
- sortdown() : bool
- 一つ位置を下げる
- sortup() : bool
- 一つ位置を上げる
- validationDefault() : Validator
- Validation Default
Properties
$Contents
Contents Table
public
ContentsTable|Table
$Contents
$publishBeginField
公開開始日のフィールド AppTable::getConditionAllowPublish() で利用
public
string
$publishBeginField
= 'publish_begin'
$publishEndField
公開終了日のフィールド AppTable::getConditionAllowPublish() で利用
public
string
$publishEndField
= 'publish_end'
$publishStatusField
公開状態のフィールド AppTable::getConditionAllowPublish() で利用
public
string
$publishStatusField
= 'status'
$searchIndexSaving
検索テーブルへの保存可否
public
bool
$searchIndexSaving
= true
$Sites
Sites Table
public
SitesTable|Table
$Sites
$tmpEvents
一時イベント イベントを一時にオフにする場合に対象のコールバック処理を一時的に格納する
public
array<string|int, mixed>
$tmpEvents
= []
$_pages
WebページURLリスト キャッシュ用
protected
mixed
$_pages
= -1
$_publishes
公開WebページURLリスト キャッシュ用
protected
mixed
$_publishes
= -1
$_View
View
protected
View
$_View
$__pageInsertID
最終登録ID モバイルページへのコピー処理でスーパークラスの最終登録IDが上書きされ、 コントローラーからは正常なIDが取得できないのでモバイルページへのコピー以外の場合だけ保存する
private
int
$__pageInsertID
= null
Methods
addPrefix()
テーブル名にプレフィックスを追加する
public
addPrefix(mixed $table) : string
$this->getConnection()->config() を利用するとユニットテストで問題が発生するため、BcUtil::getCurrentDbConfig()を利用する
$this->getConnection()->config()を利用すると、 そのテーブルに connection が設定されてしまう。
ユニットテストの dataProvider で、テーブルを初期化する場合、 タイミング的に、接続についてテスト用のエイリアスが設定されていないので、 テスト用の接続ではなく、 default がセットされてしまう。
Parameters
- $table : mixed
Tags
Return values
stringbeforeSave()
Before Save
public
beforeSave(EventInterface $event, EntityInterface $entity, ArrayObject $options) : void
Parameters
- $event : EventInterface
- $entity : EntityInterface
- $options : ArrayObject
Tags
belongsToMany()
Belongs To Many
public
belongsToMany(string $associated[, array<string|int, mixed> $options = [] ]) : BelongsToMany
joinTable にプレフィックスを追加
Parameters
- $associated : string
- $options : array<string|int, mixed> = []
Tags
Return values
BelongsToManychangeSort()
並び順を変更する
public
changeSort(string $id, int $offset[, array<string|int, mixed> $options = [] ]) : bool
Parameters
- $id : string
- $offset : int
- $options : array<string|int, mixed> = []
-
- conditions: データ取得条件
- sortFieldName: ソートフィールドのカラム名 (初期値: sort)
Tags
Return values
boolcopy()
ページデータをコピーする
public
copy(int $id, int $newParentId, string $newTitle, int $newAuthorId[, int|null $newSiteId = null ]) : EntityInterface|false
固定ページテンプレートの生成処理を実行する必要がある為、 Content::copy() は利用しない
Parameters
- $id : int
- $newParentId : int
- $newTitle : string
- $newAuthorId : int
- $newSiteId : int|null = null
Tags
Return values
EntityInterface|false —$result
createSearchIndex()
検索用データを生成する
public
createSearchIndex(mixed $page) : array<string|int, mixed>|false
Parameters
- $page : mixed
Tags
Return values
array<string|int, mixed>|falsedispatchLayerEvent()
イベントを発火
public
dispatchLayerEvent(string $name[, array<string|int, mixed> $data = [] ][, mixed $options = [] ]) : bool|Event
Parameters
- $name : string
- $data : array<string|int, mixed> = []
- $options : mixed = []
Tags
Return values
bool|EventgetConditionAllowPublish()
公開状態となっているデータを取得するための conditions 値を取得
public
getConditionAllowPublish() : array<string|int, mixed>
公開状態(初期値:status)、公開開始日(初期値:publish_begin)、公開終了日(初期値:publish_end) の組み合わせてによって配列を生成する。
公開状態が true であったとしても、公開期間が設定されている場合はそちらを優先する。
Tags
Return values
array<string|int, mixed>getMax()
指定フィールドのMAX値を取得する
public
getMax(string $field[, array<string|int, mixed> $conditions = [] ]) : int
現在数値フィールドのみ対応
Parameters
- $field : string
- $conditions : array<string|int, mixed> = []
Tags
Return values
intgetService()
Get Service
public
getService(mixed $service) : array<string|int, mixed>|mixed|object
Parameters
- $service : mixed
Tags
Return values
array<string|int, mixed>|mixed|objectgetTable()
テーブルを取得
public
getTable() : string
プレフィックスを追加する
Tags
Return values
stringgetUrlPattern()
コンテンツのURLにマッチする候補を取得する
public
getUrlPattern(string $url) : array<string|int, mixed>
Parameters
- $url : string
Tags
Return values
array<string|int, mixed>hasService()
Has Service
public
hasService(mixed $service) : bool
Parameters
- $service : mixed
Tags
Return values
boolinitialize()
Initialize
public
initialize(array<string|int, mixed> $config) : void
Parameters
- $config : array<string|int, mixed>
-
テーブル設定
Tags
offEvent()
イベントを一時的にオフにする
public
offEvent(string $eventKey) : mixed
Parameters
- $eventKey : string
Tags
onEvent()
一時的にオフにしたイベントをオンにする BcModelEventDispatcherは対象外とする
public
onEvent(string $eventKey) : mixed
Parameters
- $eventKey : string
Tags
replaceText()
機種依存文字の変換処理
public
replaceText(string $str) : string
内部文字コードがUTF-8である必要がある。 多次元配列には対応していない。
Parameters
- $str : string
-
変換対象文字列
Tags
Return values
string —変換後文字列
setTable()
テーブルをセット
public
setTable(string $table) : AppTable
プレフィックスを追加する
Parameters
- $table : string
Tags
Return values
AppTablesortdown()
一つ位置を下げる
public
sortdown(string $id, array<string|int, mixed> $conditions) : bool
Parameters
- $id : string
- $conditions : array<string|int, mixed>
Tags
Return values
boolsortup()
一つ位置を上げる
public
sortup(string $id, array<string|int, mixed> $conditions) : bool
Parameters
- $id : string
- $conditions : array<string|int, mixed>
Tags
Return values
boolvalidationDefault()
Validation Default
public
validationDefault(Validator $validator) : Validator
Parameters
- $validator : Validator