@@ -552,7 +559,7 @@
@@ -586,6 +593,27 @@
+
+ $mode
+
+ : int
+
+権限
+
+
+ $_errors
+
+ : array<string|int, mixed>
+
+Holds errors from last method.
+
+
+ $_messages
+
+ : array<string|int, mixed>
+
+Holds messages from last method.
+
$path
@@ -608,6 +636,20 @@
Constructor
+
+ chmod()
+
+ : bool
+
+ディレクトリ構造のモードを再帰的に変更します。これにはファイルのモードも変更することが含まれます。
+
+
+ copy()
+
+ : bool
+
+ディレクトリをコピーする
+
create()
@@ -622,6 +664,12 @@
ディレクトリを再帰的に削除する
+
+ find()
+
+ : array<string|int, mixed>
+
+
getFiles()
@@ -643,6 +691,34 @@
パスを取得する
+
+ move()
+
+ : bool
+
+ディレクトリを移動する
+
+
+ pwd()
+
+ : string
+
+パスを取得する
+
+
+ read()
+
+ : array<string|int, mixed>
+
+フォルダ内のファイルとフォルダを読み込む
+
+
+ tree()
+
+ : array<string|int, mixed>
+
+各ディレクトリ内のネストされたディレクトリとファイルの配列を返す
+
@@ -657,6 +733,117 @@
+
+ $mode
+
+
+
+
+
+
+
+ 権限
+
+
+
+ public
+ int
+ $mode
+ = 0755
+
+
+
+
+
+
+
+
+
+
+ $_errors
+
+
+
+
+
+
+
+ Holds errors from last method.
+
+
+
+ protected
+ array<string|int, mixed>
+ $_errors
+ = []
+
+
+
+
+
+
+
+
+
+
+ $_messages
+
+
+
+
+
+
+
+ Holds messages from last method.
+
+
+
+ protected
+ array<string|int, mixed>
+ $_messages
+ = []
+
+
+
+
+
+
+
+
+
@@ -715,7 +902,7 @@
@@ -723,7 +910,7 @@
public
- __construct ( string $path ) : mixed
+ __construct ( [ string $path = '' ] ) : mixed
@@ -734,7 +921,7 @@ Parameters
$path
: string
-
+ = ''
@@ -780,23 +967,23 @@ ディレクトリを作成する
+ ディレクトリ構造のモードを再帰的に変更します。これにはファイルのモードも変更することが含まれます。
public
- create ( [ int $mask = 0777 ] ) : bool
+ chmod ( [ int|null $mode = null ] [ , bool $recursive = true ] [ , array<string|int, mixed> $exceptions = [] ] ) : bool
@@ -805,9 +992,23 @@
Parameters
- $mask
- : int
- = 0777
+ $mode
+ : int|null
+ = null
+
+
+
+
+ $recursive
+ : bool
+ = true
+
+
+
+
+ $exceptions
+ : array<string|int, mixed>
+ = []
@@ -816,7 +1017,7 @@ Parameters
Tags
-
+
@@ -857,33 +1058,50 @@ Return values
-public
"
>
-
- delete()
-
+
+ copy()
+
- ディレクトリを再帰的に削除する
+ ディレクトリをコピーする
public
- delete ( ) : mixed
+ copy ( mixed $dest [ , mixed $mode = 0777 ] ) : bool
-
+ Parameters
+
+
+ $dest
+ : mixed
+
+
+
+
+
+ $mode
+ : mixed
+ = 0777
+
+
+
+
+
Tags
-
+
@@ -912,7 +1130,11 @@
-
+
+
-public
"
>
-
- getFiles()
-
+
+ create()
+
- ディレクトリ内のファイル一覧を取得する
+ ディレクトリを作成する
public
- getFiles ( [ array<string|int, mixed> $options = [] ] ) : array<string|int, mixed>
+ create ( [ int|string $mask = 0777 ] ) : bool
@@ -945,9 +1167,9 @@
Parameters
- $options
- : array<string|int, mixed>
- = []
+ $mask
+ : int|string
+ = 0777
@@ -956,7 +1178,7 @@ Parameters
Tags
-
+
@@ -987,7 +1209,7 @@
Return values
- array<string|int, mixed>
+ bool
@@ -997,23 +1219,23 @@ Return values
-public
"
>
-
- getFolders()
-
+
+ delete()
+
- ディレクトリ内のフォルダ一覧を取得する
+
ディレクトリを再帰的に削除する
public
- getFolders ( [ array<string|int, mixed> $options = [] ] ) : array<string|int, mixed>
+
delete ( [ mixed $path = '' ] ) : mixed
@@ -1022,9 +1244,9 @@
Parameters
- $options
- : array<string|int, mixed>
- = []
+ $path
+ : mixed
+ = ''
@@ -1033,7 +1255,7 @@ Parameters
Tags
-
+
@@ -1062,6 +1284,50 @@
+
+
+
+
+ find()
+
+
+
+
+
+
+
+ public
+ find ( [ string $regexpPattern = '.*' ] ) : array<string|int, mixed>
+
+
+
+
+
+ Parameters
+
+
+ $regexpPattern
+ : string
+ = '.*'
+
+
+
+
+
+
+
+
+
Return values
array<string|int, mixed>
@@ -1074,29 +1340,183 @@ Return values
-public
"
>
-
- getPath()
-
+
+ getFiles()
+
- パスを取得する
+ ディレクトリ内のファイル一覧を取得する
public
- getPath ( ) : string
+ getFiles ( [ array<string|int, mixed> $options = [] ] ) : array<string|int, mixed>
-
+ Parameters
+
+
+ $options
+ : array<string|int, mixed>
+ = []
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, mixed>
+
+
+
+
+
+ getFolders()
+
+
+
+
+
+ ディレクトリ内のフォルダ一覧を取得する
+
+
+ public
+ getFolders ( [ array<string|int, mixed> $options = [] ] ) : array<string|int, mixed>
+
+
+
+
+
+ Parameters
+
+
+ $options
+ : array<string|int, mixed>
+ = []
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, mixed>
+
+
+
+
+
+ getPath()
+
+
+
+
+
+ パスを取得する
+
+
+ public
+ getPath ( ) : string
+
+
+
+
+
+
Tags
@@ -1134,6 +1554,315 @@ Return values
string
+
+
+
+ move()
+
+
+
+
+
+ ディレクトリを移動する
+
+
+ public
+ move ( string $dest [ , mixed $options = [] ] ) : bool
+
+
+
+
+
+ Parameters
+
+
+ $dest
+ : string
+
+
+
+
+
+ $options
+ : mixed
+ = []
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ pwd()
+
+
+
+
+
+ パスを取得する
+
+
+ public
+ pwd ( ) : string
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ string
+
+
+
+
+
+ read()
+
+
+
+
+
+ フォルダ内のファイルとフォルダを読み込む
+
+
+ public
+ read ( [ mixed $sort = true ] [ , bool $exceptions = false ] [ , bool $fullPath = false ] ) : array<string|int, mixed>
+
+
+
+
+
+
+ since 5.1.0 後方互換用
+
+
+
+
+
+ Parameters
+
+
+ $sort
+ : mixed
+ = true
+
+
+
+
+
+ $exceptions
+ : bool
+ = false
+
+
+
+
+
+ $fullPath
+ : bool
+ = false
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, mixed>
+
+
+
+
+
+ tree()
+
+
+
+
+
+ 各ディレクトリ内のネストされたディレクトリとファイルの配列を返す
+
+
+ public
+ tree ( [ string|null $path = null ] [ , mixed $exceptions = false ] [ , string|null $type = null ] ) : array<string|int, mixed>
+
+
+
+
+
+ Parameters
+
+
+ $path
+ : string|null
+ = null
+
+
+
+
+ $exceptions
+ : mixed
+ = false
+
+
+
+
+ $type
+ : string|null
+ = null
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, mixed>
+
+
@@ -1248,6 +1977,9 @@ Return values
Properties
@@ -1256,11 +1988,18 @@
Return values
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcGmaps.html b/5/plugin/reference/classes/BaserCore-Utility-BcGmaps.html
index fea0f822..3f2fdde3 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcGmaps.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcGmaps.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcLang.html b/5/plugin/reference/classes/BaserCore-Utility-BcLang.html
index 035d63a7..08eeab31 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcLang.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcLang.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcPluginUtil.html b/5/plugin/reference/classes/BaserCore-Utility-BcPluginUtil.html
index 3590cdae..092f0fb3 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcPluginUtil.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcPluginUtil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcSiteConfig.html b/5/plugin/reference/classes/BaserCore-Utility-BcSiteConfig.html
index 914db9f1..d5f37028 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcSiteConfig.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcSiteConfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcText.html b/5/plugin/reference/classes/BaserCore-Utility-BcText.html
index fe1969f2..f6866633 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcText.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcText.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcUpdateLog.html b/5/plugin/reference/classes/BaserCore-Utility-BcUpdateLog.html
index 606d10d4..558922e5 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcUpdateLog.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcUpdateLog.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcUtil.html b/5/plugin/reference/classes/BaserCore-Utility-BcUtil.html
index f11a4dc1..3ca1da72 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcUtil.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcUtil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -697,7 +701,7 @@
createRequest()
- : ServerRequest
+ : ServerRequestInterface
Request を取得する
@@ -1252,7 +1256,7 @@
@@ -1339,7 +1343,7 @@
protected
static array<string|int, mixed>
$_detectors
- = ['get' => ['env' => 'REQUEST_METHOD', 'value' => 'GET'], 'post' => ['env' => 'REQUEST_METHOD', 'value' => 'POST'], 'put' => ['env' => 'REQUEST_METHOD', 'value' => 'PUT'], 'patch' => ['env' => 'REQUEST_METHOD', 'value' => 'PATCH'], 'delete' => ['env' => 'REQUEST_METHOD', 'value' => 'DELETE'], 'head' => ['env' => 'REQUEST_METHOD', 'value' => 'HEAD'], 'options' => ['env' => 'REQUEST_METHOD', 'value' => 'OPTIONS'], 'ssl' => ['env' => 'HTTPS', 'options' => [1, 'on']], 'ajax' => ['env' => 'HTTP_X_REQUESTED_WITH', 'value' => 'XMLHttpRequest'], 'json' => ['accept' => ['application/json'], 'param' => '_ext', 'value' => 'json'], 'xml' => ['accept' => ['application/xml', 'text/xml'], 'param' => '_ext', 'value' => 'xml']]
+ = ['get' => ['env' => 'REQUEST_METHOD', 'value' => 'GET'], 'post' => ['env' => 'REQUEST_METHOD', 'value' => 'POST'], 'put' => ['env' => 'REQUEST_METHOD', 'value' => 'PUT'], 'patch' => ['env' => 'REQUEST_METHOD', 'value' => 'PATCH'], 'delete' => ['env' => 'REQUEST_METHOD', 'value' => 'DELETE'], 'head' => ['env' => 'REQUEST_METHOD', 'value' => 'HEAD'], 'options' => ['env' => 'REQUEST_METHOD', 'value' => 'OPTIONS'], 'https' => ['env' => 'HTTPS', 'options' => [1, 'on']], 'ajax' => ['env' => 'HTTP_X_REQUESTED_WITH', 'value' => 'XMLHttpRequest'], 'json' => ['accept' => ['application/json'], 'param' => '_ext', 'value' => 'json'], 'xml' => ['accept' => ['application/xml', 'text/xml'], 'exclude' => ['text/html'], 'param' => '_ext', 'value' => 'xml']]
BcUtil::createRequest() にて
ServerRequest::_detectors を初期化する際に利用
@@ -1373,7 +1377,7 @@
@@ -1447,7 +1451,7 @@
@@ -1520,7 +1524,7 @@
@@ -1567,6 +1571,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1592,7 +1603,7 @@
@@ -1645,6 +1656,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1670,7 +1688,7 @@
@@ -1745,7 +1763,7 @@
@@ -1804,7 +1822,7 @@
@@ -1881,7 +1899,7 @@
@@ -1940,6 +1958,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1965,7 +1990,7 @@
@@ -2029,7 +2054,7 @@
@@ -2092,7 +2117,7 @@
@@ -2148,7 +2173,7 @@
@@ -2249,7 +2274,7 @@
@@ -2257,7 +2282,7 @@
public
- static createRequest ( [ string $url = '/' ] [ , mixed $data = [] ] [ , mixed $method = 'GET' ] [ , mixed $config = [] ] ) : ServerRequest
+ static createRequest ( [ string $url = '/' ] [ , mixed $data = [] ] [ , mixed $method = 'GET' ] [ , mixed $config = [] ] ) : ServerRequestInterface
@@ -2329,7 +2354,7 @@
Return values
- ServerRequest
+ ServerRequestInterface
@@ -2347,7 +2372,7 @@
@@ -2435,7 +2460,7 @@
@@ -2509,7 +2534,7 @@
@@ -2586,7 +2611,7 @@
@@ -2692,7 +2717,7 @@
@@ -2769,7 +2794,7 @@
@@ -2836,7 +2861,7 @@
@@ -2903,7 +2928,7 @@
@@ -2970,7 +2995,7 @@
@@ -3043,7 +3068,7 @@
@@ -3110,7 +3135,7 @@
@@ -3178,7 +3203,7 @@
@@ -3255,7 +3280,7 @@
@@ -3323,7 +3348,7 @@
@@ -3383,7 +3408,7 @@
@@ -3418,6 +3443,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3443,7 +3475,7 @@
@@ -3510,7 +3542,7 @@
@@ -3577,7 +3609,7 @@
@@ -3648,7 +3680,7 @@
@@ -3727,7 +3759,7 @@
@@ -3819,7 +3851,7 @@
@@ -3925,7 +3957,7 @@
@@ -4004,7 +4036,7 @@
@@ -4084,7 +4116,7 @@
@@ -4184,7 +4216,7 @@
@@ -4284,7 +4316,7 @@
@@ -4361,7 +4393,7 @@
@@ -4450,7 +4482,7 @@
@@ -4530,7 +4562,7 @@
@@ -4597,7 +4629,7 @@
@@ -4674,7 +4706,7 @@
@@ -4751,7 +4783,7 @@
@@ -4830,7 +4862,7 @@
@@ -4907,7 +4939,7 @@
@@ -4970,7 +5002,7 @@
@@ -5015,6 +5047,13 @@
+
+
+ unitTest
+
+
+
+
@@ -5040,7 +5079,7 @@
@@ -5124,7 +5163,7 @@
@@ -5205,7 +5244,7 @@
@@ -5272,7 +5311,7 @@
@@ -5355,7 +5394,7 @@
@@ -5443,7 +5482,7 @@
@@ -5510,7 +5549,7 @@
@@ -5591,7 +5630,7 @@
@@ -5638,7 +5677,7 @@
@@ -5720,7 +5759,7 @@
@@ -5797,7 +5836,7 @@
@@ -5864,7 +5903,7 @@
@@ -5933,7 +5972,7 @@
@@ -6010,7 +6049,7 @@
@@ -6045,6 +6084,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6070,7 +6116,7 @@
@@ -6105,6 +6151,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6130,7 +6183,7 @@
@@ -6197,7 +6250,7 @@
@@ -6264,7 +6317,7 @@
@@ -6331,7 +6384,7 @@
@@ -6391,7 +6444,7 @@
@@ -6468,7 +6521,7 @@
@@ -6528,7 +6581,7 @@
@@ -6595,7 +6648,7 @@
@@ -6672,7 +6725,7 @@
@@ -6749,7 +6802,7 @@
@@ -6820,7 +6873,7 @@
@@ -6887,7 +6940,7 @@
@@ -6971,7 +7024,7 @@
@@ -7025,13 +7078,6 @@
-
-
- unitTest
-
-
-
-
@@ -7057,7 +7103,7 @@
@@ -7116,13 +7162,6 @@
-
-
- unitTest
-
-
-
-
@@ -7144,7 +7183,7 @@
@@ -7184,6 +7223,13 @@
+
+
+ unitTest
+
+
+
+
@@ -7213,7 +7259,7 @@
@@ -7307,7 +7353,7 @@
@@ -7386,7 +7432,7 @@
@@ -7455,7 +7501,7 @@
@@ -7532,7 +7578,7 @@
@@ -7638,7 +7684,7 @@
@@ -7714,7 +7760,7 @@
@@ -7793,7 +7839,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-Utility-BcZip.html b/5/plugin/reference/classes/BaserCore-Utility-BcZip.html
index 00c88624..d252f3ec 100644
--- a/5/plugin/reference/classes/BaserCore-Utility-BcZip.html
+++ b/5/plugin/reference/classes/BaserCore-Utility-BcZip.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -552,7 +556,7 @@
@@ -694,7 +698,7 @@
@@ -731,7 +735,7 @@
@@ -768,7 +772,7 @@
@@ -810,7 +814,7 @@
@@ -866,7 +870,7 @@
@@ -943,7 +947,7 @@
Model
+
+
+ ORM
+
Routing
@@ -652,7 +656,7 @@
@@ -697,6 +701,13 @@
+
+
+ unitTest
+
+
+
+
@@ -722,7 +733,7 @@
@@ -767,6 +778,13 @@
+
+
+ unitTest
+
+
+
+
@@ -792,7 +810,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-Vendor-Imageresizer.html b/5/plugin/reference/classes/BaserCore-Vendor-Imageresizer.html
index 3a71ecff..8c852ec6 100644
--- a/5/plugin/reference/classes/BaserCore-Vendor-Imageresizer.html
+++ b/5/plugin/reference/classes/BaserCore-Vendor-Imageresizer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-AppView.html b/5/plugin/reference/classes/BaserCore-View-AppView.html
index f77f282d..7a90e075 100644
--- a/5/plugin/reference/classes/BaserCore-View-AppView.html
+++ b/5/plugin/reference/classes/BaserCore-View-AppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -558,7 +562,7 @@
@@ -1072,7 +1076,7 @@
@@ -1149,7 +1153,7 @@
@@ -1209,7 +1213,7 @@
@@ -1272,7 +1276,7 @@
@@ -1338,7 +1342,7 @@
@@ -1418,7 +1422,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-View-BcAdminAppView.html b/5/plugin/reference/classes/BaserCore-View-BcAdminAppView.html
index c7f624b5..394256a2 100644
--- a/5/plugin/reference/classes/BaserCore-View-BcAdminAppView.html
+++ b/5/plugin/reference/classes/BaserCore-View-BcAdminAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1538,7 +1542,7 @@
@@ -1615,7 +1619,7 @@
@@ -1738,7 +1742,7 @@
@@ -1804,7 +1808,7 @@
@@ -1884,7 +1888,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-View-BcFrontAppView.html b/5/plugin/reference/classes/BaserCore-View-BcFrontAppView.html
index b916070c..aaa18c2a 100644
--- a/5/plugin/reference/classes/BaserCore-View-BcFrontAppView.html
+++ b/5/plugin/reference/classes/BaserCore-View-BcFrontAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1191,7 +1195,7 @@
@@ -1268,7 +1272,7 @@
@@ -1391,7 +1395,7 @@
@@ -1457,7 +1461,7 @@
@@ -1537,7 +1541,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-View-BcFrontEmailView.html b/5/plugin/reference/classes/BaserCore-View-BcFrontEmailView.html
index 2f6af103..fb5cad4a 100644
--- a/5/plugin/reference/classes/BaserCore-View-BcFrontEmailView.html
+++ b/5/plugin/reference/classes/BaserCore-View-BcFrontEmailView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -698,7 +702,7 @@
@@ -733,6 +737,13 @@
+
+
+ unitTest
+
+
+
+
noTodo
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BaserCoreBaserHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BaserCoreBaserHelper.html
index 2e0588b3..91e7ecbf 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BaserCoreBaserHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BaserCoreBaserHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -738,7 +742,7 @@
@@ -773,6 +777,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminFormHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminFormHelper.html
index 1a60d0ad..3a96fc2e 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminFormHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminFormHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1917,7 +1921,7 @@
@@ -2252,7 +2256,7 @@
@@ -2590,7 +2594,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminHelper.html
index 83fd4e41..63c8c5ac 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcAdminHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1098,7 +1102,7 @@
@@ -1154,7 +1158,7 @@
Model
+
+
+ ORM
+
Routing
@@ -738,7 +742,7 @@
@@ -797,6 +801,13 @@
+
+
+ unitTest
+
+
+
+
@@ -913,7 +924,7 @@
@@ -969,6 +980,13 @@
+
+
+ unitTest
+
+
+
+
@@ -994,7 +1012,7 @@
@@ -1050,6 +1068,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1075,7 +1100,7 @@
@@ -1134,6 +1159,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcAuthHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcAuthHelper.html
index a7231ba7..e1b70d77 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcAuthHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcAuthHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcBaserHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcBaserHelper.html
index ac7ffb30..12aa090e 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcBaserHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcBaserHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -2427,7 +2431,7 @@
@@ -2592,7 +2596,7 @@
- コンテンツ内に Javascript を出力するかどうか(初期値 : true)
+ コンテンツ内に css を出力するかどうか(初期値 : true)
@@ -4698,7 +4748,7 @@
@@ -5140,7 +5190,7 @@
Model
+
+
+ ORM
+
Routing
@@ -1111,7 +1115,7 @@
@@ -1137,6 +1141,20 @@ Parameters
+
+ Tags
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcContentsHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcContentsHelper.html
index 7a7e86d1..bc98cbfb 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcContentsHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcContentsHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -618,6 +622,12 @@
: PermissionsService
+
+ $Url
+
+ : UrlHelper
+
+
$_View
@@ -990,7 +1000,7 @@
@@ -1001,7 +1011,7 @@
public
array<string|int, mixed>
$helpers
- = ['BcBaser']
+ = ['BcBaser', 'Url']
@@ -1045,6 +1055,42 @@
+
+
+
+ $Url
+
+
+
+
+
+
+
+
+
+
+ public
+ UrlHelper
+ $Url
+
+
+
+
+
+
+
+
@@ -1289,7 +1335,7 @@
@@ -1387,7 +1433,7 @@
@@ -1464,7 +1510,7 @@
@@ -1531,7 +1577,7 @@
@@ -1580,7 +1626,7 @@
@@ -1647,7 +1693,7 @@
@@ -1728,7 +1774,7 @@
@@ -1763,6 +1809,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1788,7 +1841,7 @@
@@ -1898,7 +1951,7 @@
@@ -1983,7 +2036,7 @@
@@ -2086,7 +2139,7 @@
@@ -2155,7 +2208,7 @@
@@ -2237,7 +2290,7 @@
@@ -2295,7 +2348,7 @@
@@ -2428,7 +2481,7 @@
@@ -2473,6 +2526,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2498,7 +2558,7 @@
@@ -2575,7 +2635,7 @@
@@ -2668,7 +2728,7 @@
@@ -2783,7 +2843,7 @@
@@ -2944,7 +3004,7 @@
@@ -3026,7 +3086,7 @@
@@ -3123,7 +3183,7 @@
@@ -3209,7 +3269,7 @@
@@ -3288,7 +3348,7 @@
@@ -3348,7 +3408,7 @@
@@ -3429,7 +3489,7 @@
@@ -3494,7 +3554,7 @@
@@ -3601,7 +3661,7 @@
@@ -3707,7 +3767,7 @@
@@ -3763,7 +3823,7 @@
@@ -3823,7 +3883,7 @@
@@ -3913,7 +3973,7 @@
@@ -4101,6 +4161,7 @@ Return values
$ContentsService
$helpers
$PermissionsService
+ $Url
$_View
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcCsvHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcCsvHelper.html
index 4bf91ccf..dc5e303b 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcCsvHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcCsvHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcFormHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcFormHelper.html
index 5c088cd2..49561ced 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcFormHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcFormHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1116,7 +1120,7 @@
@@ -1874,7 +1878,7 @@
@@ -2209,7 +2213,7 @@
@@ -2455,7 +2459,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcFormTableHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcFormTableHelper.html
index 4abb903d..5793dbb9 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcFormTableHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcFormTableHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcFreezeHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcFreezeHelper.html
index af2d9539..45449136 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcFreezeHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcFreezeHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1189,7 +1193,7 @@
@@ -1245,6 +1249,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1351,7 +1362,7 @@
@@ -1663,7 +1674,7 @@
@@ -1720,6 +1731,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1749,7 +1767,7 @@
@@ -2187,7 +2205,7 @@
@@ -2243,6 +2261,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2366,7 +2391,7 @@
@@ -2443,7 +2468,7 @@
@@ -2478,6 +2503,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2499,7 +2531,7 @@
@@ -2834,7 +2866,7 @@
@@ -3080,7 +3112,7 @@
@@ -3174,7 +3206,7 @@
@@ -3230,6 +3262,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3259,7 +3298,7 @@
@@ -3318,6 +3357,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3347,7 +3393,7 @@
@@ -3450,7 +3496,7 @@
@@ -3515,6 +3561,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3544,7 +3597,7 @@
@@ -3612,6 +3665,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3853,7 +3913,7 @@
@@ -3909,6 +3969,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3938,7 +4005,7 @@
@@ -3998,6 +4065,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4027,7 +4101,7 @@
@@ -4079,6 +4153,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4108,7 +4189,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcGoogleMapsHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcGoogleMapsHelper.html
index 2bf641fa..e2f88464 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcGoogleMapsHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcGoogleMapsHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcHtmlHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcHtmlHelper.html
index 1382cf46..3b2172cb 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcHtmlHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcHtmlHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcLayoutHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcLayoutHelper.html
index e3d6c450..a8f2f040 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcLayoutHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcLayoutHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcListTableHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcListTableHelper.html
index 5effc9f0..b759d00e 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcListTableHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcListTableHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcPageHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcPageHelper.html
index a7adbe75..14d8e685 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcPageHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcPageHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcPluginBaserHelperInterface.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcPluginBaserHelperInterface.html
index cc076f97..0298b43a 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcPluginBaserHelperInterface.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcPluginBaserHelperInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcSearchBoxHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcSearchBoxHelper.html
index 85cce3bc..e0dea17c 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcSearchBoxHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcSearchBoxHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcSiteConfigHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcSiteConfigHelper.html
index 4d75a109..a7ce0347 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcSiteConfigHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcSiteConfigHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcSmartphoneHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcSmartphoneHelper.html
index 95502a7f..28b544ae 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcSmartphoneHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcSmartphoneHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -904,7 +908,7 @@
@@ -975,7 +979,7 @@
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcTextHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcTextHelper.html
index ceb4024a..030c6460 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcTextHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcTextHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -886,7 +890,7 @@
@@ -945,6 +949,13 @@
+
+
+ unitTest
+
+
+
+
@@ -966,7 +977,7 @@
@@ -1029,6 +1040,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1050,7 +1068,7 @@
@@ -1116,6 +1134,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1141,7 +1166,7 @@
@@ -1189,6 +1214,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1218,7 +1250,7 @@
@@ -1253,6 +1285,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1282,7 +1321,7 @@
@@ -1338,6 +1377,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1363,7 +1409,7 @@
@@ -1410,6 +1456,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1439,7 +1492,7 @@
@@ -1484,6 +1537,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1513,7 +1573,7 @@
@@ -1548,6 +1608,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1577,7 +1644,7 @@
@@ -1622,6 +1689,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1651,7 +1725,7 @@
@@ -1686,6 +1760,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1715,7 +1796,7 @@
@@ -1760,6 +1841,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1789,7 +1877,7 @@
@@ -1824,6 +1912,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1853,7 +1948,7 @@
@@ -1909,6 +2004,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2029,7 +2131,7 @@
@@ -2094,6 +2196,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2123,7 +2232,7 @@
@@ -2208,7 +2317,7 @@
@@ -2264,6 +2373,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2289,7 +2405,7 @@
@@ -2343,6 +2459,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2372,7 +2495,7 @@
@@ -2428,6 +2551,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2457,7 +2587,7 @@
@@ -2502,6 +2632,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2531,7 +2668,7 @@
@@ -2576,6 +2713,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2601,7 +2745,7 @@
@@ -2657,6 +2801,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcTimeHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcTimeHelper.html
index c344a63b..60121b4a 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcTimeHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcTimeHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -758,7 +762,7 @@
@@ -795,7 +799,7 @@
@@ -832,7 +836,7 @@
@@ -911,7 +915,7 @@
@@ -957,6 +961,13 @@
+
+
+ unitTest
+
+
+
+
@@ -982,7 +993,7 @@
@@ -1058,7 +1069,7 @@
@@ -1105,6 +1116,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1134,7 +1152,7 @@
@@ -1180,6 +1198,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1296,7 +1321,7 @@
@@ -1304,7 +1329,7 @@
public
- format ( [ string $date = null ] [ , array<string|int, mixed> $format = 'yyyy-MM-dd' ] [ , bool $invalid = false ] [ , int $timezone = null ] ) : string
+ format ( string $date [ , array<string|int, mixed> $format = null ] [ , bool $invalid = false ] [ , int $timezone = null ] ) : string
@@ -1315,7 +1340,7 @@ Parameters
$date
: string
- = null
+
@@ -1324,7 +1349,7 @@ Parameters
$format
: array<string|int, mixed>
- = 'yyyy-MM-dd'
+ = null
@@ -1368,6 +1393,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1397,7 +1429,7 @@
@@ -1453,6 +1485,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1482,7 +1521,7 @@
@@ -1540,6 +1579,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1561,7 +1607,7 @@
@@ -1608,6 +1654,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1637,7 +1690,7 @@
@@ -1684,6 +1737,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1713,7 +1773,7 @@
@@ -1778,6 +1838,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1807,7 +1874,7 @@
@@ -1854,6 +1921,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1883,7 +1957,7 @@
@@ -1930,6 +2004,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcToolbarHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcToolbarHelper.html
index 624bc1bf..4f59dab0 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcToolbarHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcToolbarHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcUploadHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcUploadHelper.html
index 24d03234..e97ab64c 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcUploadHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcUploadHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BaserCore-View-Helper-BcXmlHelper.html b/5/plugin/reference/classes/BaserCore-View-Helper-BcXmlHelper.html
index bcc8d172..8d5c5b9c 100644
--- a/5/plugin/reference/classes/BaserCore-View-Helper-BcXmlHelper.html
+++ b/5/plugin/reference/classes/BaserCore-View-Helper-BcXmlHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -874,7 +878,7 @@
Model
+
+
+ ORM
+
Routing
@@ -871,7 +875,7 @@
@@ -1017,7 +1021,7 @@
@@ -1052,7 +1056,7 @@
@@ -1331,7 +1335,7 @@
Model
+
+
+ ORM
+
Routing
@@ -885,7 +889,7 @@
@@ -1031,7 +1035,7 @@
@@ -1066,7 +1070,7 @@
@@ -1345,7 +1349,7 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -710,7 +702,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -932,78 +924,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1354,7 +1274,7 @@
@@ -1878,11 +1798,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2149,7 +2069,7 @@
@@ -2505,7 +2425,7 @@
@@ -2571,7 +2491,7 @@
@@ -2644,7 +2564,7 @@
@@ -2887,7 +2807,7 @@
@@ -3107,8 +3027,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCategoriesController.html b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCategoriesController.html
index 0dcfa369..d35e6936 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCategoriesController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCategoriesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -631,18 +635,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -761,7 +753,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -983,78 +975,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1489,7 +1409,7 @@
@@ -2267,11 +2187,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2538,7 +2458,7 @@
@@ -2894,7 +2814,7 @@
@@ -2960,7 +2880,7 @@
@@ -3033,7 +2953,7 @@
@@ -3276,7 +3196,7 @@
@@ -3496,8 +3416,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCommentsController.html b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCommentsController.html
index 0e051ec0..4dadcb8e 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCommentsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogCommentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -556,7 +560,7 @@
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -701,7 +693,7 @@
index()
- : void
+ : void|ResponseInterface
[ADMIN] ブログコメントを一覧表示する
@@ -731,7 +723,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -960,78 +952,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1382,7 +1302,7 @@
@@ -1525,7 +1445,7 @@
@@ -1863,7 +1783,7 @@
@@ -1871,7 +1791,7 @@
public
- index ( BlogCommentsAdminService $service , int $blogContentId ) : void
+ index ( BlogCommentsAdminService $service , int $blogContentId ) : void|ResponseInterface
@@ -1929,7 +1849,11 @@
-
+
+ Return values
+ void|ResponseInterface
+
+
@@ -2175,11 +2099,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2446,7 +2370,7 @@
@@ -2540,7 +2464,7 @@
@@ -2896,7 +2820,7 @@
@@ -2962,7 +2886,7 @@
@@ -3035,7 +2959,7 @@
@@ -3278,7 +3202,7 @@
@@ -3498,8 +3422,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogContentsController.html b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogContentsController.html
index 5ad68390..534880e9 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogContentsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -637,18 +641,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -746,7 +738,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -1011,78 +1003,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1433,7 +1353,7 @@
@@ -2047,11 +1967,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2318,7 +2238,7 @@
@@ -2744,7 +2664,7 @@
@@ -2810,7 +2730,7 @@
@@ -2883,7 +2803,7 @@
@@ -3126,7 +3046,7 @@
@@ -3347,8 +3267,6 @@ Return values
$Authentication
$BcContents
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogPostsController.html b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogPostsController.html
index 757c556b..6824b334 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogPostsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogPostsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -611,18 +615,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -755,7 +747,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -984,78 +976,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2481,11 +2401,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2841,7 +2761,7 @@
@@ -3197,7 +3117,7 @@
@@ -3263,7 +3183,7 @@
@@ -3336,7 +3256,7 @@
@@ -3579,7 +3499,7 @@
@@ -3799,8 +3719,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogTagsController.html b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogTagsController.html
index 17e3d789..af715c23 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogTagsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Admin-BlogTagsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -738,7 +730,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -960,78 +952,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1458,7 +1378,7 @@
@@ -2235,11 +2155,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2506,7 +2426,7 @@
@@ -2862,7 +2782,7 @@
@@ -2928,7 +2848,7 @@
@@ -3001,7 +2921,7 @@
@@ -3244,7 +3164,7 @@
@@ -3464,8 +3384,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCategoriesController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCategoriesController.html
index 0f09425b..ca1ea5d4 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCategoriesController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCategoriesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -798,6 +790,13 @@
[API] 単一ブログカテゴリー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -961,78 +960,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1614,7 +1541,7 @@
@@ -1943,7 +1870,7 @@
@@ -2853,6 +2780,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3523,6 +3508,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCommentsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCommentsController.html
index 593db37c..50b6b4f7 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCommentsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogCommentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -784,6 +776,13 @@
[API] 単一ブログコメントー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -947,78 +946,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1615,7 +1542,7 @@
@@ -1864,7 +1791,7 @@
@@ -2701,6 +2628,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3369,6 +3354,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogContentsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogContentsController.html
index f36b62ad..f8b7b407 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogContentsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -798,6 +790,13 @@
[API] 単一ブログコンテンツー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -961,78 +960,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1541,7 +1468,7 @@
@@ -1943,7 +1870,7 @@
@@ -2853,6 +2780,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3523,6 +3508,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogPostsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogPostsController.html
index 2ec6ab9f..81401203 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogPostsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogPostsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -812,6 +804,13 @@
[API] ブログ記事単一データ取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -975,78 +974,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1632,7 +1559,7 @@
@@ -2046,7 +1973,7 @@
@@ -3051,6 +2978,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3723,6 +3708,7 @@ Return values
setupFrontView()
unpublish()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogTagsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogTagsController.html
index 9ffadb01..f6a159a4 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogTagsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-Admin-BlogTagsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -791,6 +783,13 @@
[API] 単一ブログタグー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -954,78 +953,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1615,7 +1542,7 @@
@@ -1944,7 +1871,7 @@
@@ -2781,6 +2708,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3450,6 +3435,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCategoriesController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCategoriesController.html
index 5b26a37e..0fd17e34 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCategoriesController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCategoriesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -755,6 +747,13 @@
[API] 単一ブログカテゴリー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -918,78 +917,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1340,7 +1267,7 @@
@@ -1417,7 +1344,7 @@
@@ -1586,7 +1513,7 @@
@@ -1890,7 +1817,7 @@
@@ -2367,6 +2294,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3031,6 +3016,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCommentsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCommentsController.html
index 9171465a..290d0f98 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCommentsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogCommentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
[API] 単一ブログコメントー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2287,6 +2214,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2950,6 +2935,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogContentsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogContentsController.html
index 532c91cc..42bc7114 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogContentsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
[API] 単一ブログコンテンツー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2287,6 +2214,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2950,6 +2935,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogPostsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogPostsController.html
index 61b61c4e..b2fc45f8 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogPostsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogPostsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
[API] ブログ記事単一データ取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2295,6 +2222,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2958,6 +2943,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogTagsController.html b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogTagsController.html
index 0969f9ff..fe4a8f35 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-Api-BlogTagsController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-Api-BlogTagsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
[API] 単一ブログタグー取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2287,6 +2214,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2950,6 +2935,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcBlog-Controller-BlogController.html b/5/plugin/reference/classes/BcBlog-Controller-BlogController.html
index 16f8e575..a925b3ea 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-BlogController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-BlogController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -601,18 +605,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -881,78 +873,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1219,7 +1139,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Controller-BlogFrontAppController.html b/5/plugin/reference/classes/BcBlog-Controller-BlogFrontAppController.html
index 57d2ad7e..5347cdfe 100644
--- a/5/plugin/reference/classes/BcBlog-Controller-BlogFrontAppController.html
+++ b/5/plugin/reference/classes/BcBlog-Controller-BlogFrontAppController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -601,18 +605,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -846,78 +838,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2608,8 +2528,6 @@ Return values
diff --git a/5/plugin/reference/classes/BcBlog-Event-BcBlogViewEventListener.html b/5/plugin/reference/classes/BcBlog-Event-BcBlogViewEventListener.html
index 9401f0b1..376b00ad 100644
--- a/5/plugin/reference/classes/BcBlog-Event-BcBlogViewEventListener.html
+++ b/5/plugin/reference/classes/BcBlog-Event-BcBlogViewEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Mailer-BlogCommentMailer.html b/5/plugin/reference/classes/BcBlog-Mailer-BlogCommentMailer.html
index 37e24c57..f174619e 100644
--- a/5/plugin/reference/classes/BcBlog-Mailer-BlogCommentMailer.html
+++ b/5/plugin/reference/classes/BcBlog-Mailer-BlogCommentMailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogCategory.html b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogCategory.html
index f2901361..c31a11e6 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogCategory.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogCategory.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -599,7 +603,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -633,7 +637,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -754,7 +758,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -938,7 +942,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogComment.html b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogComment.html
index 4ea3e389..faf53e63 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogComment.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogComment.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -605,7 +609,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -629,7 +633,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -774,7 +778,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -918,7 +922,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogContent.html b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogContent.html
index 6c84e4f0..4aa639b2 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogContent.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogContent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -617,7 +621,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -659,7 +663,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -876,7 +880,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -1128,7 +1132,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogPost.html b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogPost.html
index 7859a917..3cac52ea 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogPost.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogPost.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -623,7 +627,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -659,7 +663,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -677,19 +681,19 @@
$posted
- : FrozenTime
+ : DateTime
$publish_begin
- : FrozenTime
+ : DateTime
$publish_end
- : FrozenTime
+ : DateTime
@@ -720,7 +724,7 @@
$_virtual
- : mixed
+ : array<string|int, mixed>
アイキャッチのフルパス
@@ -957,7 +961,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -1173,7 +1177,7 @@
public
- FrozenTime
+ DateTime
$modified
@@ -1281,7 +1285,7 @@
public
- FrozenTime
+ DateTime
$posted
@@ -1317,7 +1321,7 @@
public
- FrozenTime
+ DateTime
$publish_begin
@@ -1353,7 +1357,7 @@
public
- FrozenTime
+ DateTime
$publish_end
@@ -1535,7 +1539,7 @@
protected
- mixed
+ array<string|int, mixed>
$_virtual
= ['_eyecatch']
diff --git a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogTag.html b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogTag.html
index 2d5f82fd..15a0fe05 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Entity-BlogTag.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Entity-BlogTag.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -605,7 +609,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -660,7 +664,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -732,7 +736,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcBlog-Model-Table-BlogAppTable.html b/5/plugin/reference/classes/BcBlog-Model-Table-BlogAppTable.html
index 2b32b914..a969508a 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Table-BlogAppTable.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Table-BlogAppTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -974,7 +978,7 @@
@@ -1130,7 +1134,7 @@
@@ -1318,7 +1322,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1336,13 +1340,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1395,7 +1397,7 @@
@@ -1466,7 +1468,7 @@
@@ -1614,7 +1616,7 @@
@@ -1691,7 +1693,7 @@
@@ -1766,7 +1768,7 @@
@@ -1832,7 +1834,7 @@
@@ -1906,7 +1908,7 @@
@@ -1956,6 +1958,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2057,7 +2066,7 @@
@@ -2134,7 +2143,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Model-Table-BlogCategoriesTable.html b/5/plugin/reference/classes/BcBlog-Model-Table-BlogCategoriesTable.html
index 508574fe..d4ab7014 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Table-BlogCategoriesTable.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Table-BlogCategoriesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -712,7 +716,7 @@
getByName()
- : array<string|int, mixed>|null
+ : EntityInterface
カテゴリ名よりカテゴリを取得
@@ -737,6 +741,13 @@
指定フィールドのMAX値を取得する
+
+ getParent()
+
+ : EntityInterface
+
+親カテゴリを取得する
+
getService()
@@ -1177,7 +1188,7 @@
@@ -1254,7 +1265,7 @@
@@ -1294,6 +1305,34 @@ Parameters
+
+ Tags
+
+
+
+
+
+ notodo
+
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -1392,7 +1431,7 @@
@@ -1481,7 +1520,7 @@
@@ -1676,7 +1715,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1694,13 +1733,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1753,7 +1790,7 @@
@@ -1761,7 +1798,7 @@
public
- getByName ( int $blogContentId , string $name [ , array<string|int, mixed> $options = [] ] ) : array<string|int, mixed>|null
+ getByName ( int $blogContentId , string $name [ , array<string|int, mixed> $options = [] ] ) : EntityInterface
@@ -1793,12 +1830,40 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
Return values
- array<string|int, mixed>|null
+ EntityInterface
@@ -1816,7 +1881,7 @@
@@ -1900,7 +1965,7 @@
@@ -1971,7 +2036,7 @@
@@ -2042,6 +2107,83 @@ Return values
int
+
+
+
+ getParent()
+
+
+
+
+
+ 親カテゴリを取得する
+
+
+ public
+ getParent ( mixed $parent_id ) : EntityInterface
+
+
+
+
+
+ Parameters
+
+
+ $parent_id
+ : mixed
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
+
+
+
+
+ Return values
+ EntityInterface
+
+
@@ -2273,7 +2415,7 @@
@@ -2318,6 +2460,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2343,7 +2492,7 @@
BlogCategoriesTable.php
:
- 320
+ 325
@@ -2579,7 +2728,7 @@
@@ -2645,7 +2794,7 @@
@@ -2719,7 +2868,7 @@
@@ -2769,6 +2918,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2870,7 +3026,7 @@
@@ -2947,7 +3103,7 @@
@@ -3101,7 +3257,7 @@
@@ -3344,6 +3500,7 @@ Return values
getCategoryList()
getConditionAllowPublish()
getMax()
+ getParent()
getService()
getTable()
getUrlPattern()
diff --git a/5/plugin/reference/classes/BcBlog-Model-Table-BlogCommentsTable.html b/5/plugin/reference/classes/BcBlog-Model-Table-BlogCommentsTable.html
index 1ff629b7..4133a3e2 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Table-BlogCommentsTable.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Table-BlogCommentsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1065,7 +1069,7 @@
@@ -1221,7 +1225,7 @@
@@ -1409,7 +1413,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1427,13 +1431,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1486,7 +1488,7 @@
@@ -1557,7 +1559,7 @@
@@ -1705,7 +1707,7 @@
@@ -1782,7 +1784,7 @@
@@ -1857,7 +1859,7 @@
@@ -1923,7 +1925,7 @@
@@ -1997,7 +1999,7 @@
@@ -2047,6 +2049,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2148,7 +2157,7 @@
@@ -2225,7 +2234,7 @@
@@ -2302,7 +2311,7 @@
@@ -2347,6 +2356,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcBlog-Model-Table-BlogContentsTable.html b/5/plugin/reference/classes/BcBlog-Model-Table-BlogContentsTable.html
index 1b3064bb..ec8bf646 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Table-BlogContentsTable.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Table-BlogContentsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1107,7 +1111,7 @@
@@ -1354,7 +1358,7 @@
@@ -1443,7 +1447,7 @@
@@ -1520,7 +1524,7 @@
@@ -1596,6 +1600,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1625,7 +1636,7 @@
@@ -1670,6 +1681,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1768,7 +1786,7 @@
@@ -1944,7 +1962,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1962,13 +1980,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -2021,7 +2037,7 @@
@@ -2092,7 +2108,7 @@
@@ -2240,7 +2256,7 @@
@@ -2392,7 +2408,7 @@
@@ -2458,7 +2474,7 @@
@@ -2532,7 +2548,7 @@
@@ -2582,6 +2598,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2683,7 +2706,7 @@
@@ -2760,7 +2783,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsBlogTagsTable.html b/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsBlogTagsTable.html
index 2f19c06f..c0789996 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsBlogTagsTable.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsBlogTagsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -974,7 +978,7 @@
@@ -1130,7 +1134,7 @@
@@ -1318,7 +1322,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1336,13 +1340,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1395,7 +1397,7 @@
@@ -1466,7 +1468,7 @@
@@ -1614,7 +1616,7 @@
@@ -1691,7 +1693,7 @@
@@ -1766,7 +1768,7 @@
@@ -1832,7 +1834,7 @@
@@ -1906,7 +1908,7 @@
@@ -1956,6 +1958,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2057,7 +2066,7 @@
@@ -2134,7 +2143,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsTable.html b/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsTable.html
index 4023b771..2e11152c 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsTable.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Table-BlogPostsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -811,7 +815,7 @@
getPublishes()
- : array<string|int, mixed>
+ : SelectQuery
公開状態の記事を取得する
@@ -1306,7 +1310,7 @@
@@ -1383,7 +1387,7 @@
@@ -1391,7 +1395,7 @@
public
- afterSave ( bool $created [ , array<string|int, mixed> $options = [] ] ) : mixed
+ afterSave ( EventInterface $event , EntityInterface $entity , array<string|int, mixed> $options ) : mixed
@@ -1400,8 +1404,15 @@
Parameters
- $created
- : bool
+ $event
+ : EventInterface
+
+
+
+
+
+ $entity
+ : EntityInterface
@@ -1409,7 +1420,7 @@ Parameters
$options
: array<string|int, mixed>
- = []
+
@@ -1449,7 +1460,7 @@
@@ -1484,7 +1495,7 @@
@@ -1567,7 +1578,7 @@
@@ -1651,7 +1662,7 @@
@@ -1710,6 +1721,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1810,7 +1828,7 @@
@@ -1899,7 +1917,7 @@
@@ -1987,7 +2005,7 @@
@@ -2032,7 +2050,7 @@
@@ -2193,7 +2211,7 @@
@@ -2292,7 +2310,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -2310,13 +2328,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -2369,7 +2385,7 @@
@@ -2457,7 +2473,7 @@
@@ -2528,7 +2544,7 @@
@@ -2625,7 +2641,7 @@
@@ -2711,7 +2727,7 @@
@@ -2767,6 +2783,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2796,7 +2819,7 @@
@@ -2887,7 +2910,7 @@
@@ -2895,7 +2918,7 @@
public
- getPublishes ( array<string|int, mixed> $options ) : array<string|int, mixed>
+ getPublishes ( array<string|int, mixed> $options ) : SelectQuery
@@ -2913,12 +2936,40 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
Return values
- array<string|int, mixed>
+ SelectQuery
@@ -2998,7 +3049,7 @@
@@ -3150,7 +3201,7 @@
@@ -3216,7 +3267,7 @@
@@ -3290,7 +3341,7 @@
@@ -3340,6 +3391,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3441,7 +3499,7 @@
@@ -3516,7 +3574,7 @@
@@ -3593,7 +3651,7 @@
@@ -3747,7 +3805,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Model-Table-BlogTagsTable.html b/5/plugin/reference/classes/BcBlog-Model-Table-BlogTagsTable.html
index d693012c..692f80ee 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Table-BlogTagsTable.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Table-BlogTagsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -685,7 +689,7 @@
getByName()
- : array<string|int, mixed>
+ : EntityInterface
指定した名称のブログタグ情報を取得する
@@ -1019,7 +1023,7 @@
@@ -1175,7 +1179,7 @@
@@ -1264,7 +1268,7 @@
@@ -1317,6 +1321,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1441,7 +1452,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1459,13 +1470,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1526,7 +1535,7 @@
public
- getByName ( string $name ) : array<string|int, mixed>
+ getByName ( mixed $name ) : EntityInterface
@@ -1536,7 +1545,7 @@ Parameters
$name
- : string
+ : mixed
@@ -1549,7 +1558,7 @@ Parameters
Return values
- array<string|int, mixed>
+ EntityInterface
@@ -1567,7 +1576,7 @@
@@ -1638,7 +1647,7 @@
@@ -1863,7 +1872,7 @@
@@ -2176,7 +2185,7 @@
@@ -2242,7 +2251,7 @@
@@ -2316,7 +2325,7 @@
@@ -2366,6 +2375,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2467,7 +2483,7 @@
@@ -2544,7 +2560,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Model-Validation-BlogCategoryValidation.html b/5/plugin/reference/classes/BcBlog-Model-Validation-BlogCategoryValidation.html
index 7980df92..985a7382 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Validation-BlogCategoryValidation.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Validation-BlogCategoryValidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Model-Validation-BlogContentValidation.html b/5/plugin/reference/classes/BcBlog-Model-Validation-BlogContentValidation.html
index c7a249f7..f741cf8a 100644
--- a/5/plugin/reference/classes/BcBlog-Model-Validation-BlogContentValidation.html
+++ b/5/plugin/reference/classes/BcBlog-Model-Validation-BlogContentValidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminService.html b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminService.html
index b2d745b9..18436636 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -870,7 +874,7 @@
@@ -954,7 +958,7 @@
@@ -1038,7 +1042,7 @@
@@ -1199,7 +1203,7 @@
@@ -1279,7 +1283,7 @@
@@ -1370,7 +1374,7 @@
@@ -1454,7 +1458,7 @@
@@ -1531,7 +1535,7 @@
@@ -1685,7 +1689,7 @@
@@ -2091,7 +2095,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminServiceInterface.html b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminServiceInterface.html
index 7d6bb374..9e951381 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCategoriesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCommentsAdminService.html b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCommentsAdminService.html
index 3e4fc753..d1dda832 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCommentsAdminService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogCommentsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -562,7 +566,7 @@
@@ -900,7 +904,7 @@
@@ -952,6 +956,13 @@
+
+
+ unitTest
+
+
+
+
@@ -977,7 +988,7 @@
@@ -1070,7 +1081,7 @@
@@ -1231,7 +1242,7 @@
@@ -1276,6 +1287,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1378,7 +1396,7 @@
@@ -1413,6 +1431,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1519,7 +1544,7 @@
@@ -1527,7 +1552,7 @@
public
- getViewVarsForIndex ( int $blogContentId , int|null $blogPostId , ResultSet $blogComments ) : array<string|int, mixed>
+ getViewVarsForIndex ( int $blogContentId , int|null $blogPostId , PaginatedResultSet |ResultSet $blogComments ) : array<string|int, mixed>
@@ -1555,7 +1580,7 @@ Parameters
$blogComments
- : ResultSet
+ : PaginatedResultSet |ResultSet
ブログコメント
@@ -1701,7 +1726,7 @@
@@ -1778,7 +1803,7 @@
Model
+
+
+ ORM
+
Routing
@@ -544,7 +548,7 @@
@@ -613,7 +617,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminService.html b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminService.html
index f952c462..76e42e83 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminServiceInterface.html b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminServiceInterface.html
index b712cb80..50438f0e 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogContentsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminService.html b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminService.html
index 3b1d185a..3c48edd7 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -659,13 +663,6 @@
新規登録
-
- createAuthorCondition()
-
- : array<string|int, mixed>
-
-作成者の条件を作成する
-
createCategoryCondition()
@@ -1064,7 +1061,7 @@
@@ -1147,7 +1144,7 @@
@@ -1231,7 +1228,7 @@
@@ -1310,7 +1307,7 @@
@@ -1372,90 +1369,6 @@ Return values
EntityInterface
-
-
-
- createAuthorCondition()
-
-
-
-
-
- 作成者の条件を作成する
-
-
- public
- createAuthorCondition ( array<string|int, mixed> $conditions , string $author ) : array<string|int, mixed>
-
-
-
-
-
- Parameters
-
-
- $conditions
- : array<string|int, mixed>
-
-
-
-
-
- $author
- : string
-
-
-
-
-
-
-
-
- Tags
-
-
-
-
-
- checked
-
-
-
-
-
-
- noTodo
-
-
-
-
-
-
- unitTest
-
-
-
-
-
-
-
-
-
-
- Return values
- array<string|int, mixed>
-
-
@@ -1576,7 +1489,7 @@
@@ -1660,7 +1573,7 @@
@@ -1705,6 +1618,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1730,7 +1650,7 @@
@@ -1816,7 +1736,7 @@
@@ -1907,7 +1827,7 @@
@@ -2068,7 +1988,7 @@
@@ -2231,7 +2151,7 @@
@@ -2308,7 +2228,7 @@
@@ -2316,7 +2236,7 @@
public
- getIndexByAuthor ( string $author [ , array<string|int, mixed> $options = [] ] ) : Query
+ getIndexByAuthor ( int $userId [ , array<string|int, mixed> $options = [] ] ) : Query
@@ -2325,8 +2245,8 @@
Parameters
- $author
- : string
+ $userId
+ : int
@@ -2392,7 +2312,7 @@
@@ -2476,7 +2396,7 @@
@@ -2574,7 +2494,7 @@
@@ -2658,7 +2578,7 @@
@@ -2742,7 +2662,7 @@
@@ -2821,7 +2741,7 @@
@@ -2977,7 +2897,7 @@
@@ -3138,7 +3058,7 @@
@@ -3215,7 +3135,7 @@
@@ -3274,6 +3194,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3642,7 +3569,7 @@
@@ -3721,7 +3648,7 @@
@@ -3874,7 +3801,7 @@
@@ -3953,7 +3880,7 @@
@@ -4039,7 +3966,7 @@
@@ -4244,7 +4171,6 @@ Return values
batch()
copy()
create()
- createAuthorCondition()
createCategoryCondition()
createKeywordCondition()
createOrder()
diff --git a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminServiceInterface.html b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminServiceInterface.html
index 9774d94a..cf814b31 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Admin-BlogPostsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesService.html b/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesService.html
index 31198b0e..643aacc9 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -828,7 +832,7 @@
@@ -912,7 +916,7 @@
@@ -996,7 +1000,7 @@
@@ -1157,7 +1161,7 @@
@@ -1237,7 +1241,7 @@
@@ -1328,7 +1332,7 @@
@@ -1412,7 +1416,7 @@
@@ -1489,7 +1493,7 @@
@@ -1566,7 +1570,7 @@
@@ -1650,7 +1654,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesServiceInterface.html b/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesServiceInterface.html
index e6089aa9..7c243fad 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesServiceInterface.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogCategoriesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogCommentsService.html b/5/plugin/reference/classes/BcBlog-Service-BlogCommentsService.html
index 52aa6cfc..41661889 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogCommentsService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogCommentsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -889,7 +893,7 @@
@@ -941,6 +945,13 @@
+
+
+ unitTest
+
+
+
+
@@ -966,7 +977,7 @@
@@ -1059,7 +1070,7 @@
@@ -1220,7 +1231,7 @@
@@ -1265,6 +1276,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1367,7 +1385,7 @@
@@ -1402,6 +1420,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1585,7 +1610,7 @@
@@ -1662,7 +1687,7 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogContentsService.html b/5/plugin/reference/classes/BcBlog-Service-BlogContentsService.html
index 7d15d9fd..697b9071 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogContentsService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogContentsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogContentsServiceInterface.html b/5/plugin/reference/classes/BcBlog-Service-BlogContentsServiceInterface.html
index a216b5a0..faabc752 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogContentsServiceInterface.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogContentsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogPostsService.html b/5/plugin/reference/classes/BcBlog-Service-BlogPostsService.html
index 4efa9e6d..c5b6e3fb 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogPostsService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogPostsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -655,13 +659,6 @@
新規登録
-
- createAuthorCondition()
-
- : array<string|int, mixed>
-
-作成者の条件を作成する
-
createCategoryCondition()
@@ -1025,7 +1022,7 @@
@@ -1108,7 +1105,7 @@
@@ -1192,7 +1189,7 @@
@@ -1271,7 +1268,7 @@
@@ -1333,90 +1330,6 @@ Return values
EntityInterface
-
-
-
- createAuthorCondition()
-
-
-
-
-
- 作成者の条件を作成する
-
-
- public
- createAuthorCondition ( array<string|int, mixed> $conditions , string $author ) : array<string|int, mixed>
-
-
-
-
-
- Parameters
-
-
- $conditions
- : array<string|int, mixed>
-
-
-
-
-
- $author
- : string
-
-
-
-
-
-
-
-
- Tags
-
-
-
-
-
- checked
-
-
-
-
-
-
- noTodo
-
-
-
-
-
-
- unitTest
-
-
-
-
-
-
-
-
-
-
- Return values
- array<string|int, mixed>
-
-
@@ -1537,7 +1450,7 @@
@@ -1621,7 +1534,7 @@
@@ -1666,6 +1579,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1691,7 +1611,7 @@
@@ -1777,7 +1697,7 @@
@@ -1868,7 +1788,7 @@
@@ -2029,7 +1949,7 @@
@@ -2115,7 +2035,7 @@
@@ -2192,7 +2112,7 @@
@@ -2200,7 +2120,7 @@
public
- getIndexByAuthor ( string $author [ , array<string|int, mixed> $options = [] ] ) : Query
+ getIndexByAuthor ( int $userId [ , array<string|int, mixed> $options = [] ] ) : Query
@@ -2209,8 +2129,8 @@
Parameters
- $author
- : string
+ $userId
+ : int
@@ -2276,7 +2196,7 @@
@@ -2360,7 +2280,7 @@
@@ -2458,7 +2378,7 @@
@@ -2542,7 +2462,7 @@
@@ -2626,7 +2546,7 @@
@@ -2705,7 +2625,7 @@
@@ -2784,7 +2704,7 @@
@@ -2945,7 +2865,7 @@
@@ -3022,7 +2942,7 @@
@@ -3081,6 +3001,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3183,7 +3110,7 @@
@@ -3262,7 +3189,7 @@
@@ -3415,7 +3342,7 @@
@@ -3494,7 +3421,7 @@
@@ -3580,7 +3507,7 @@
@@ -3785,7 +3712,6 @@ Return values
batch()
copy()
create()
- createAuthorCondition()
createCategoryCondition()
createKeywordCondition()
createOrder()
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogPostsServiceInterface.html b/5/plugin/reference/classes/BcBlog-Service-BlogPostsServiceInterface.html
index abdd4661..d42a6612 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogPostsServiceInterface.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogPostsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1403,7 +1407,7 @@
public
- getIndexByAuthor ( string $author [ , array<string|int, mixed> $options = [] ] ) : Query
+ getIndexByAuthor ( int $userId [ , array<string|int, mixed> $options = [] ] ) : Query
@@ -1412,8 +1416,8 @@
Parameters
- $author
- : string
+ $userId
+ : int
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogTagsService.html b/5/plugin/reference/classes/BcBlog-Service-BlogTagsService.html
index ac54763f..05ff5b2a 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogTagsService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogTagsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -865,7 +869,7 @@
@@ -1194,7 +1198,7 @@
@@ -1492,7 +1496,7 @@
@@ -1569,7 +1573,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-Service-BlogTagsServiceInterface.html b/5/plugin/reference/classes/BcBlog-Service-BlogTagsServiceInterface.html
index f118f707..8763ad35 100644
--- a/5/plugin/reference/classes/BcBlog-Service-BlogTagsServiceInterface.html
+++ b/5/plugin/reference/classes/BcBlog-Service-BlogTagsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-Service-Front-BlogFrontService.html b/5/plugin/reference/classes/BcBlog-Service-Front-BlogFrontService.html
index 403dc377..98b458cb 100644
--- a/5/plugin/reference/classes/BcBlog-Service-Front-BlogFrontService.html
+++ b/5/plugin/reference/classes/BcBlog-Service-Front-BlogFrontService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -867,7 +871,7 @@
@@ -940,7 +944,7 @@
@@ -1013,7 +1017,7 @@
@@ -1055,7 +1059,7 @@
@@ -1120,7 +1124,7 @@
@@ -1199,7 +1203,7 @@
@@ -1290,7 +1294,7 @@
@@ -1444,7 +1448,7 @@
@@ -1523,7 +1527,7 @@
BlogFrontService.php
:
- 616
+ 619
@@ -1614,7 +1618,7 @@
BlogFrontService.php
:
- 257
+ 259
@@ -1622,7 +1626,7 @@
public
- getViewVarsForArchivesByAuthor ( ResultSet $posts , string $author , BlogContent $blogContent ) : array<string|int, mixed>
+ getViewVarsForArchivesByAuthor ( ResultSet |PaginatedResultSet $posts , int $userId , BlogContent $blogContent ) : array<string|int, mixed>
@@ -1632,14 +1636,14 @@ Parameters
$posts
- : ResultSet
+ : ResultSet |PaginatedResultSet
- $author
- : string
+ $userId
+ : int
@@ -1705,7 +1709,7 @@
BlogFrontService.php
:
- 188
+ 189
@@ -1713,7 +1717,7 @@
public
- getViewVarsForArchivesByCategory ( ResultSet $posts , string $category , ServerRequest $request , EntityInterface $blogContent , array<string|int, mixed> $crumbs ) : array<string|int, mixed>
+ getViewVarsForArchivesByCategory ( ResultSet |PaginatedResultSet $posts , string $category , ServerRequest $request , EntityInterface $blogContent , array<string|int, mixed> $crumbs ) : array<string|int, mixed>
@@ -1723,7 +1727,7 @@ Parameters
$posts
- : ResultSet
+ : ResultSet |PaginatedResultSet
@@ -1810,7 +1814,7 @@
BlogFrontService.php
:
- 310
+ 313
@@ -1818,7 +1822,7 @@
public
- getViewVarsForArchivesByDate ( ResultSet $posts , string $year , string $month , string $day , BlogContent $blogContent ) : array<string|int, mixed>
+ getViewVarsForArchivesByDate ( ResultSet |PaginatedResultSet $posts , string $year , string $month , string $day , BlogContent $blogContent ) : array<string|int, mixed>
@@ -1828,7 +1832,7 @@ Parameters
$posts
- : ResultSet
+ : ResultSet |PaginatedResultSet
@@ -1915,7 +1919,7 @@
@@ -1923,7 +1927,7 @@
public
- getViewVarsForArchivesByTag ( ResultSet $posts , string $tag , BlogContent $blogContent ) : array<string|int, mixed>
+ getViewVarsForArchivesByTag ( ResultSet |PaginatedResultSet $posts , string $tag , BlogContent $blogContent ) : array<string|int, mixed>
@@ -1933,7 +1937,7 @@ Parameters
$posts
- : ResultSet
+ : ResultSet |PaginatedResultSet
@@ -2006,7 +2010,7 @@
BlogFrontService.php
:
- 498
+ 501
@@ -2090,7 +2094,7 @@
BlogFrontService.php
:
- 521
+ 524
@@ -2181,7 +2185,7 @@
BlogFrontService.php
:
- 558
+ 561
@@ -2286,7 +2290,7 @@
BlogFrontService.php
:
- 589
+ 592
@@ -2377,7 +2381,7 @@
@@ -2385,7 +2389,7 @@
public
- getViewVarsForIndex ( ServerRequest $request , BlogContent $blogContent , ResultSet $posts ) : array<string|int, array<string|int, mixed>>
+ getViewVarsForIndex ( ServerRequest $request , BlogContent $blogContent , PaginatedResultSet |ResultSet $posts ) : array<string|int, array<string|int, mixed>>
@@ -2409,7 +2413,7 @@ Parameters
$posts
- : ResultSet
+ : PaginatedResultSet |ResultSet
@@ -2468,7 +2472,7 @@
Model
+
+
+ ORM
+
Routing
@@ -544,7 +548,7 @@
@@ -690,7 +694,7 @@
@@ -767,7 +771,7 @@
@@ -858,7 +862,7 @@
@@ -935,7 +939,7 @@
@@ -1012,7 +1016,7 @@
BlogFrontServiceInterface.php
:
- 92
+ 93
@@ -1020,7 +1024,7 @@
public
- getViewVarsForArchivesByAuthor ( ResultSet $posts , string $author , BlogContent $blogContent ) : array<string|int, mixed>
+ getViewVarsForArchivesByAuthor ( ResultSet |PaginatedResultSet $posts , int $userId , BlogContent $blogContent ) : array<string|int, mixed>
@@ -1030,14 +1034,14 @@ Parameters
$posts
- : ResultSet
+ : ResultSet |PaginatedResultSet
- $author
- : string
+ $userId
+ : int
@@ -1103,7 +1107,7 @@
BlogFrontServiceInterface.php
:
- 63
+ 64
@@ -1208,7 +1212,7 @@
BlogFrontServiceInterface.php
:
- 119
+ 120
@@ -1313,7 +1317,7 @@
@@ -1404,7 +1408,7 @@
@@ -1412,7 +1416,7 @@
public
- getViewVarsForIndex ( ServerRequest $request , BlogContent $blogContent , ResultSet $posts ) : array<string|int, array<string|int, mixed>>
+ getViewVarsForIndex ( ServerRequest $request , BlogContent $blogContent , PaginatedResultSet $posts ) : array<string|int, array<string|int, mixed>>
@@ -1436,7 +1440,7 @@ Parameters
$posts
- : ResultSet
+ : PaginatedResultSet
@@ -1495,7 +1499,7 @@
@@ -1586,7 +1590,7 @@
@@ -1659,7 +1663,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-ServiceProvider-BcBlogServiceProvider.html b/5/plugin/reference/classes/BcBlog-ServiceProvider-BcBlogServiceProvider.html
index 5289f82d..c33e8755 100644
--- a/5/plugin/reference/classes/BcBlog-ServiceProvider-BcBlogServiceProvider.html
+++ b/5/plugin/reference/classes/BcBlog-ServiceProvider-BcBlogServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcBlog-View-BlogAdminAppView.html b/5/plugin/reference/classes/BcBlog-View-BlogAdminAppView.html
index 9b45d1da..37d69e69 100644
--- a/5/plugin/reference/classes/BcBlog-View-BlogAdminAppView.html
+++ b/5/plugin/reference/classes/BcBlog-View-BlogAdminAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1580,7 +1584,7 @@
@@ -1657,7 +1661,7 @@
@@ -1780,7 +1784,7 @@
@@ -1846,7 +1850,7 @@
@@ -1926,7 +1930,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-View-BlogFrontAppView.html b/5/plugin/reference/classes/BcBlog-View-BlogFrontAppView.html
index 7b578baf..8934c111 100644
--- a/5/plugin/reference/classes/BcBlog-View-BlogFrontAppView.html
+++ b/5/plugin/reference/classes/BcBlog-View-BlogFrontAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1244,7 +1248,7 @@
@@ -1321,7 +1325,7 @@
@@ -1444,7 +1448,7 @@
@@ -1510,7 +1514,7 @@
@@ -1590,7 +1594,7 @@
diff --git a/5/plugin/reference/classes/BcBlog-View-Helper-BcBlogBaserHelper.html b/5/plugin/reference/classes/BcBlog-View-Helper-BcBlogBaserHelper.html
index b3811842..679f839b 100644
--- a/5/plugin/reference/classes/BcBlog-View-Helper-BcBlogBaserHelper.html
+++ b/5/plugin/reference/classes/BcBlog-View-Helper-BcBlogBaserHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -742,7 +746,7 @@
@@ -777,6 +781,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcBlog-View-Helper-BlogHelper.html b/5/plugin/reference/classes/BcBlog-View-Helper-BlogHelper.html
index e4eccc58..7368615d 100644
--- a/5/plugin/reference/classes/BcBlog-View-Helper-BlogHelper.html
+++ b/5/plugin/reference/classes/BcBlog-View-Helper-BlogHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -651,6 +655,12 @@
: HtmlHelper
+
+ $Url
+
+ : UrlHelper
+
+
$_View
@@ -774,7 +784,7 @@
getCategoryByName()
- : array<string|int, mixed>
+ : EntityInterface
ブログのカテゴリを取得する
- 例: $this->Blog->getBlogArchiveCategoryData($this->Blog->getCurrentBlogId());
@@ -867,7 +877,7 @@
getParentCategory()
- : array<string|int, mixed>
+ : EntityInterface
親カテゴリを取得する
@@ -1218,7 +1228,7 @@
removeCtrlChars()
- : mixed
+ : string
文字列から制御文字を取り除く
@@ -1453,7 +1463,7 @@
@@ -1490,7 +1500,7 @@
@@ -1527,7 +1537,7 @@
@@ -1564,7 +1574,7 @@
@@ -1619,6 +1629,42 @@
+
+
+
+ $Url
+
+
+
+
+
+
+
+
+
+
+ public
+ UrlHelper
+ $Url
+
+
+
+
+
+
+
+
@@ -1759,7 +1805,7 @@
@@ -1842,7 +1888,7 @@
@@ -1889,6 +1935,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -1910,7 +1965,7 @@
@@ -1945,6 +2000,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -1966,7 +2030,7 @@
@@ -2028,6 +2092,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -2049,7 +2122,7 @@
@@ -2084,6 +2157,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -2105,7 +2187,7 @@
@@ -2140,6 +2222,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -2161,7 +2252,7 @@
@@ -2196,6 +2287,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2312,7 +2410,7 @@
@@ -2396,6 +2494,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -2417,7 +2524,7 @@
@@ -2452,6 +2559,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2481,7 +2595,7 @@
@@ -2516,6 +2630,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2541,7 +2662,7 @@
@@ -2549,7 +2670,7 @@
public
- getBlogTemplates ( [ mixed $siteId = 0 ] ) : array<string|int, mixed>
+ getBlogTemplates ( [ mixed $siteId = 1 ] ) : array<string|int, mixed>
@@ -2562,7 +2683,7 @@ Parameters
$siteId
: mixed
- = 0
+ = 1
@@ -2588,6 +2709,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2617,7 +2745,7 @@
@@ -2662,6 +2790,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2683,7 +2818,7 @@
@@ -2781,7 +2916,7 @@
@@ -2791,7 +2926,7 @@
public
- getCategoryByName ( int $blogContentId [ , string $categoryName = '' ] [ , array<string|int, mixed> $options = [] ] ) : array<string|int, mixed>
+ getCategoryByName ( int $blogContentId [ , string $categoryName = '' ] [ , array<string|int, mixed> $options = [] ] ) : EntityInterface
@@ -2823,12 +2958,40 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
Return values
- array<string|int, mixed>
+ EntityInterface
@@ -2846,7 +3009,7 @@
@@ -2926,6 +3089,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2955,7 +3125,7 @@
@@ -3000,6 +3170,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3025,7 +3202,7 @@
@@ -3070,6 +3247,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3095,7 +3279,7 @@
@@ -3152,6 +3336,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3181,7 +3372,7 @@
@@ -3253,7 +3444,7 @@
@@ -3309,6 +3500,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3334,7 +3532,7 @@
@@ -3369,6 +3567,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3394,7 +3599,7 @@
@@ -3410,6 +3615,20 @@
+
+ Tags
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -3433,7 +3652,7 @@
@@ -3468,6 +3687,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3493,7 +3719,7 @@
@@ -3612,7 +3838,7 @@
@@ -3668,6 +3894,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3697,7 +3930,7 @@
@@ -3778,7 +4011,7 @@
@@ -3786,7 +4019,7 @@
public
- getParentCategory ( array<string|int, mixed> $post ) : array<string|int, mixed>
+ getParentCategory ( array<string|int, mixed> $post ) : EntityInterface
@@ -3806,12 +4039,40 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
Return values
- array<string|int, mixed>
+ EntityInterface
—
@@ -3833,7 +4094,7 @@
@@ -3919,11 +4180,18 @@
-
-
-
-
-
+
+ unitTest
+
+
+
+
+
+
+
+
+
+
Return values
string
—
@@ -3947,7 +4215,7 @@
@@ -3987,7 +4255,7 @@
@@ -4043,6 +4311,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4072,7 +4347,7 @@
@@ -4132,6 +4407,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4161,7 +4443,7 @@
@@ -4206,6 +4488,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4231,7 +4520,7 @@
@@ -4297,6 +4586,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4322,7 +4618,7 @@
@@ -4388,6 +4684,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4417,7 +4720,7 @@
@@ -4516,7 +4819,7 @@
@@ -4577,6 +4880,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4598,7 +4908,7 @@
@@ -4668,6 +4978,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4697,7 +5014,7 @@
@@ -4778,7 +5095,7 @@
@@ -4953,7 +5270,7 @@
@@ -5020,6 +5337,13 @@
+
+
+ unitTest
+
+
+
+
@@ -5049,7 +5373,7 @@
@@ -5108,6 +5432,13 @@
+
+
+ unitTest
+
+
+
+
@@ -5133,7 +5464,7 @@
@@ -5192,6 +5523,13 @@
+
+
+ unitTest
+
+
+
+
@@ -5217,7 +5555,7 @@
@@ -5275,6 +5613,13 @@
+
+
+ checked
+
+
+
+
noTodo
@@ -5282,6 +5627,13 @@
+
+
+ unitTest
+
+
+
+
@@ -5307,7 +5659,7 @@
@@ -5342,6 +5694,13 @@
+
+
+ unitTest
+
+
+
+
@@ -5367,7 +5726,7 @@
BlogHelper.php
:
- 2093
+ 2170
@@ -5460,7 +5819,7 @@
BlogHelper.php
:
- 2012
+ 2089
@@ -5546,7 +5905,7 @@
BlogHelper.php
:
- 2030
+ 2107
@@ -5639,7 +5998,7 @@
BlogHelper.php
:
- 2050
+ 2127
@@ -5746,7 +6105,7 @@
BlogHelper.php
:
- 2074
+ 2151
@@ -5839,7 +6198,7 @@
BlogHelper.php
:
- 2113
+ 2190
@@ -5925,7 +6284,7 @@
@@ -5970,7 +6329,7 @@
@@ -6017,6 +6376,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6042,7 +6408,7 @@
@@ -6089,6 +6455,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6191,7 +6564,7 @@
@@ -6226,6 +6599,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6255,7 +6635,7 @@
@@ -6290,6 +6670,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6315,7 +6702,7 @@
@@ -6350,6 +6737,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6379,7 +6773,7 @@
@@ -6414,6 +6808,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6443,7 +6844,7 @@
@@ -6478,6 +6879,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6507,7 +6915,7 @@
@@ -6542,6 +6950,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6571,7 +6986,7 @@
@@ -6618,6 +7033,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6643,7 +7065,7 @@
@@ -6678,6 +7100,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6707,7 +7136,7 @@
@@ -6742,6 +7171,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6771,7 +7207,7 @@
@@ -6806,6 +7242,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6835,7 +7278,7 @@
@@ -6910,7 +7353,7 @@
@@ -6976,6 +7419,13 @@
+
+
+ unitTest
+
+
+
+
@@ -6997,7 +7447,7 @@
@@ -7049,6 +7499,13 @@
+
+
+ unitTest
+
+
+
+
@@ -7070,7 +7527,7 @@
@@ -7155,6 +7612,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -7176,7 +7642,7 @@
@@ -7232,6 +7698,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -7253,7 +7728,7 @@
@@ -7309,6 +7784,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -7330,7 +7814,7 @@
@@ -7394,6 +7878,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -7415,7 +7908,7 @@
@@ -7481,6 +7974,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -7502,7 +8004,7 @@
@@ -7619,6 +8121,13 @@
+
+
+ unitTest
+
+
+
+
@@ -7640,7 +8149,7 @@
@@ -7703,6 +8212,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -7724,7 +8242,7 @@
@@ -7790,6 +8308,13 @@
+
+
+ unitTest
+
+
+
+
@@ -7811,7 +8336,7 @@
@@ -7819,7 +8344,7 @@
public
- removeCtrlChars ( mixed $string ) : mixed
+ removeCtrlChars ( mixed $string ) : string
@@ -7856,12 +8381,23 @@
+
+
+ unitTest
+
+
+
+
-
+
+ Return values
+ string
+
+
@@ -7926,6 +8462,13 @@
+
+
+ unitTest
+
+
+
+
@@ -7947,7 +8490,7 @@
@@ -8005,6 +8548,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -8026,7 +8578,7 @@
@@ -8085,6 +8637,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -8106,7 +8667,7 @@
@@ -8160,6 +8721,13 @@
+
+
+ unitTest
+
+
+
+
@@ -8181,7 +8749,7 @@
@@ -8216,6 +8784,15 @@
+
+
+ unitTest
+
+
+
+ ラッパーメソッドのためユニットテストはスキップする
+
+
@@ -8237,7 +8814,7 @@
@@ -8288,7 +8865,7 @@
@@ -8342,6 +8919,13 @@
+
+
+ unitTest
+
+
+
+
@@ -8475,6 +9059,7 @@ Return values
$content
$helpers
$Html
+ $Url
$_View
diff --git a/5/plugin/reference/classes/BcBlog-View-Helper-RssHelper.html b/5/plugin/reference/classes/BcBlog-View-Helper-RssHelper.html
index 91c0dbaa..78623939 100644
--- a/5/plugin/reference/classes/BcBlog-View-Helper-RssHelper.html
+++ b/5/plugin/reference/classes/BcBlog-View-Helper-RssHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -556,7 +560,7 @@
@@ -770,7 +774,7 @@
@@ -807,7 +811,7 @@
@@ -844,7 +848,7 @@
@@ -881,7 +885,7 @@
@@ -918,7 +922,7 @@
@@ -955,7 +959,7 @@
@@ -992,7 +996,7 @@
@@ -1029,7 +1033,7 @@
@@ -1138,7 +1142,7 @@
@@ -1180,7 +1184,7 @@
@@ -1226,6 +1230,34 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -1253,7 +1285,7 @@
@@ -1317,7 +1349,7 @@
@@ -1372,6 +1404,34 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -1399,7 +1459,7 @@
@@ -1438,7 +1498,7 @@
@@ -1475,6 +1535,34 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -1502,7 +1590,7 @@
@@ -1541,6 +1629,34 @@ Parameters
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -1568,7 +1684,7 @@
@@ -1609,6 +1725,27 @@
TimeHelper::toRSS
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcContentLink-BcContentLinkPlugin.html b/5/plugin/reference/classes/BcContentLink-BcContentLinkPlugin.html
index eb2ba45a..690fe8f5 100644
--- a/5/plugin/reference/classes/BcContentLink-BcContentLinkPlugin.html
+++ b/5/plugin/reference/classes/BcContentLink-BcContentLinkPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -610,18 +614,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -719,7 +711,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -941,78 +933,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1363,7 +1283,7 @@
@@ -1433,7 +1353,7 @@
@@ -1982,11 +1902,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2253,7 +2173,7 @@
@@ -2609,7 +2529,7 @@
@@ -2675,7 +2595,7 @@
@@ -2748,7 +2668,7 @@
@@ -2991,7 +2911,7 @@
@@ -3211,8 +3131,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcContentLink-Controller-Api-Admin-ContentLinksController.html b/5/plugin/reference/classes/BcContentLink-Controller-Api-Admin-ContentLinksController.html
index bbb2ebcb..8b18d007 100644
--- a/5/plugin/reference/classes/BcContentLink-Controller-Api-Admin-ContentLinksController.html
+++ b/5/plugin/reference/classes/BcContentLink-Controller-Api-Admin-ContentLinksController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -611,18 +615,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -779,6 +771,13 @@
コンテンツリンク取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -942,78 +941,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1540,7 +1467,7 @@
@@ -1894,7 +1821,7 @@
@@ -2667,6 +2594,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3334,6 +3319,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcContentLink-Controller-Api-ContentLinksController.html b/5/plugin/reference/classes/BcContentLink-Controller-Api-ContentLinksController.html
index 26f89bcc..912201f0 100644
--- a/5/plugin/reference/classes/BcContentLink-Controller-Api-ContentLinksController.html
+++ b/5/plugin/reference/classes/BcContentLink-Controller-Api-ContentLinksController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -610,18 +614,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -743,6 +735,13 @@
コンテンツリンク取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -906,78 +905,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1328,7 +1255,7 @@
@@ -1405,7 +1332,7 @@
@@ -1574,7 +1501,7 @@
@@ -1805,7 +1732,7 @@
@@ -2218,6 +2145,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2880,6 +2865,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcContentLink-Controller-ContentLinksController.html b/5/plugin/reference/classes/BcContentLink-Controller-ContentLinksController.html
index 49455766..b8a74e1b 100644
--- a/5/plugin/reference/classes/BcContentLink-Controller-ContentLinksController.html
+++ b/5/plugin/reference/classes/BcContentLink-Controller-ContentLinksController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -603,18 +607,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -855,78 +847,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2706,8 +2626,6 @@ Return values
diff --git a/5/plugin/reference/classes/BcContentLink-Model-Entity-ContentLink.html b/5/plugin/reference/classes/BcContentLink-Model-Entity-ContentLink.html
index 78723f0e..a6b47841 100644
--- a/5/plugin/reference/classes/BcContentLink-Model-Entity-ContentLink.html
+++ b/5/plugin/reference/classes/BcContentLink-Model-Entity-ContentLink.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : Time
+ : DateTime
@@ -605,7 +609,7 @@
$modified
- : Time
+ : DateTime
@@ -660,7 +664,7 @@
public
- Time
+ DateTime
$created
@@ -732,7 +736,7 @@
public
- Time
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcContentLink-Model-Table-ContentLinksTable.html b/5/plugin/reference/classes/BcContentLink-Model-Table-ContentLinksTable.html
index a05fd9ad..c705772c 100644
--- a/5/plugin/reference/classes/BcContentLink-Model-Table-ContentLinksTable.html
+++ b/5/plugin/reference/classes/BcContentLink-Model-Table-ContentLinksTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -990,7 +994,7 @@
@@ -1146,7 +1150,7 @@
@@ -1235,7 +1239,7 @@
@@ -1451,7 +1455,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1469,13 +1473,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1528,7 +1530,7 @@
@@ -1599,7 +1601,7 @@
@@ -1747,7 +1749,7 @@
@@ -1899,7 +1901,7 @@
@@ -1965,7 +1967,7 @@
@@ -2039,7 +2041,7 @@
@@ -2089,6 +2091,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2190,7 +2199,7 @@
@@ -2267,7 +2276,7 @@
diff --git a/5/plugin/reference/classes/BcContentLink-Service-ContentLinksService.html b/5/plugin/reference/classes/BcContentLink-Service-ContentLinksService.html
index 9f5c738b..64f0bf9c 100644
--- a/5/plugin/reference/classes/BcContentLink-Service-ContentLinksService.html
+++ b/5/plugin/reference/classes/BcContentLink-Service-ContentLinksService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcContentLink-Service-ContentLinksServiceInterface.html b/5/plugin/reference/classes/BcContentLink-Service-ContentLinksServiceInterface.html
index d55d1edd..2eca0c7b 100644
--- a/5/plugin/reference/classes/BcContentLink-Service-ContentLinksServiceInterface.html
+++ b/5/plugin/reference/classes/BcContentLink-Service-ContentLinksServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcContentLink-ServiceProvider-BcContentLinkServiceProvider.html b/5/plugin/reference/classes/BcContentLink-ServiceProvider-BcContentLinkServiceProvider.html
index 75348ad8..dedb0ae9 100644
--- a/5/plugin/reference/classes/BcContentLink-ServiceProvider-BcContentLinkServiceProvider.html
+++ b/5/plugin/reference/classes/BcContentLink-ServiceProvider-BcContentLinkServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-BcCustomContentPlugin.html b/5/plugin/reference/classes/BcCustomContent-BcCustomContentPlugin.html
index e59869d8..c4a3b374 100644
--- a/5/plugin/reference/classes/BcCustomContent-BcCustomContentPlugin.html
+++ b/5/plugin/reference/classes/BcCustomContent-BcCustomContentPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -892,7 +896,7 @@
@@ -972,7 +976,7 @@
@@ -1038,7 +1042,7 @@
@@ -1073,7 +1077,7 @@
@@ -1352,7 +1356,7 @@
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -710,7 +702,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -932,78 +924,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1354,7 +1274,7 @@
@@ -1882,11 +1802,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2153,7 +2073,7 @@
@@ -2509,7 +2429,7 @@
@@ -2575,7 +2495,7 @@
@@ -2648,7 +2568,7 @@
@@ -2891,7 +2811,7 @@
@@ -3111,8 +3031,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomContentsController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomContentsController.html
index c6188d1f..d95ece60 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomContentsController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -724,7 +716,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -946,78 +938,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1368,7 +1288,7 @@
@@ -2058,11 +1978,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2329,7 +2249,7 @@
@@ -2685,7 +2605,7 @@
@@ -2751,7 +2671,7 @@
@@ -2824,7 +2744,7 @@
@@ -3067,7 +2987,7 @@
@@ -3287,8 +3207,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomEntriesController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomEntriesController.html
index ccf0dda7..84549016 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomEntriesController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomEntriesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -752,7 +744,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -974,78 +966,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2443,11 +2363,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2714,7 +2634,7 @@
@@ -3070,7 +2990,7 @@
@@ -3136,7 +3056,7 @@
@@ -3209,7 +3129,7 @@
@@ -3452,7 +3372,7 @@
@@ -3672,8 +3592,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomFieldsController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomFieldsController.html
index 3dea956a..91b14456 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomFieldsController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomFieldsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -738,7 +730,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -960,78 +952,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1455,7 +1375,7 @@
@@ -2224,11 +2144,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2495,7 +2415,7 @@
@@ -2851,7 +2771,7 @@
@@ -2917,7 +2837,7 @@
@@ -2990,7 +2910,7 @@
@@ -3233,7 +3153,7 @@
@@ -3453,8 +3373,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomLinksController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomLinksController.html
index 3ed4afd6..e8813e98 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomLinksController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomLinksController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -710,7 +702,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -932,78 +924,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1354,7 +1274,7 @@
@@ -1882,11 +1802,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2153,7 +2073,7 @@
@@ -2509,7 +2429,7 @@
@@ -2575,7 +2495,7 @@
@@ -2648,7 +2568,7 @@
@@ -2891,7 +2811,7 @@
@@ -3111,8 +3031,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomTablesController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomTablesController.html
index 19fb36af..b9ab1d26 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomTablesController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Admin-CustomTablesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -738,7 +730,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -960,78 +952,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2244,11 +2164,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2515,7 +2435,7 @@
@@ -2871,7 +2791,7 @@
@@ -2937,7 +2857,7 @@
@@ -3010,7 +2930,7 @@
@@ -3253,7 +3173,7 @@
@@ -3473,8 +3393,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomContentsController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomContentsController.html
index 5c3dae56..17ebd40b 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomContentsController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -791,6 +783,13 @@
単一データAPI
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -954,78 +953,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1534,7 +1461,7 @@
@@ -1863,7 +1790,7 @@
@@ -2773,6 +2700,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3442,6 +3427,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomEntriesController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomEntriesController.html
index d422d849..190fc991 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomEntriesController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomEntriesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -791,6 +783,13 @@
カスタムエントリーの単一データを取得する
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -954,78 +953,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1534,7 +1461,7 @@
@@ -1863,7 +1790,7 @@
@@ -2773,6 +2700,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3442,6 +3427,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomFieldsController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomFieldsController.html
index 932ff9f1..8a4e5595 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomFieldsController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomFieldsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -791,6 +783,13 @@
単一データAPI
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -954,78 +953,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1534,7 +1461,7 @@
@@ -1863,7 +1790,7 @@
@@ -2773,6 +2700,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3442,6 +3427,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomLinksController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomLinksController.html
index 068a307c..0c1f498c 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomLinksController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomLinksController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -798,6 +790,13 @@
単一データAPI
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -961,78 +960,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1541,7 +1468,7 @@
@@ -1950,7 +1877,7 @@
@@ -2867,6 +2794,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3537,6 +3522,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomTablesController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomTablesController.html
index 6a257324..e386b8ee 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomTablesController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-Admin-CustomTablesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -791,6 +783,13 @@
単一データAPI
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -954,78 +953,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1534,7 +1461,7 @@
@@ -1863,7 +1790,7 @@
@@ -2773,6 +2700,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3442,6 +3427,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomContentsController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomContentsController.html
index ccded3cb..1c9d32ec 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomContentsController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
単一データAPI
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2287,6 +2214,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2950,6 +2935,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomEntriesController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomEntriesController.html
index 9ccdb117..196c1298 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomEntriesController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomEntriesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
カスタムエントリーの単一データを取得する
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2287,6 +2214,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2950,6 +2935,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomLinksController.html b/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomLinksController.html
index 6149ff59..18df7d3e 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomLinksController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-Api-CustomLinksController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
単一データAPI
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2287,6 +2214,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2950,6 +2935,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentController.html b/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentController.html
index 36ee3d11..476e01a9 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -601,18 +605,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -860,78 +852,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2789,8 +2709,6 @@ Return values
diff --git a/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentFrontAppController.html b/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentFrontAppController.html
index 7f1e5da2..b94ace1b 100644
--- a/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentFrontAppController.html
+++ b/5/plugin/reference/classes/BcCustomContent-Controller-CustomContentFrontAppController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -601,18 +605,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -846,78 +838,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1667,7 +1587,7 @@
@@ -2628,8 +2548,6 @@ Return values
diff --git a/5/plugin/reference/classes/BcCustomContent-Event-BcCustomContentControllerEventListener.html b/5/plugin/reference/classes/BcCustomContent-Event-BcCustomContentControllerEventListener.html
index f0d1ae9c..f856e280 100644
--- a/5/plugin/reference/classes/BcCustomContent-Event-BcCustomContentControllerEventListener.html
+++ b/5/plugin/reference/classes/BcCustomContent-Event-BcCustomContentControllerEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomContent.html b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomContent.html
index 6fb01c78..27f37108 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomContent.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomContent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -599,7 +603,7 @@
$created
- : FrozenDate
+ : Date
@@ -635,7 +639,7 @@
$modified
- : FrozenDate
+ : Date
@@ -725,7 +729,7 @@
public
- FrozenDate
+ Date
$created
@@ -941,7 +945,7 @@
public
- FrozenDate
+ Date
$modified
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomEntry.html b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomEntry.html
index f4632033..c7a4ab54 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomEntry.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomEntry.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -645,19 +649,19 @@
$publish_begin
- : FrozenDate
+ : Date
$publish_end
- : FrozenDate
+ : Date
$published
- : FrozenDate
+ : Date
@@ -933,7 +937,7 @@
public
- FrozenDate
+ Date
$publish_begin
@@ -969,7 +973,7 @@
public
- FrozenDate
+ Date
$publish_end
@@ -1005,7 +1009,7 @@
public
- FrozenDate
+ Date
$published
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomField.html b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomField.html
index 78012e86..7b342fd5 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomField.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomField.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1354,7 +1358,7 @@
@@ -1389,6 +1393,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomLink.html b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomLink.html
index 574d1f78..2690a651 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomLink.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomLink.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1774,7 +1778,7 @@
@@ -1811,6 +1815,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomTable.html b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomTable.html
index 8e686356..b8949ff4 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomTable.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Entity-CustomTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -892,7 +896,7 @@
@@ -908,6 +912,34 @@
+
+ Tags
+
+
+
+
+
+ Checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomContentsTable.html b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomContentsTable.html
index 9c2461db..d18f81d4 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomContentsTable.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomContentsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1037,7 +1041,7 @@
@@ -1114,7 +1118,7 @@
@@ -1173,6 +1177,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1277,7 +1288,7 @@
@@ -1366,7 +1377,7 @@
@@ -1411,6 +1422,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1535,7 +1553,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1553,13 +1571,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1612,7 +1628,7 @@
@@ -1683,7 +1699,7 @@
@@ -1831,7 +1847,7 @@
@@ -1950,14 +1966,14 @@
- unitTest
+ noTodo
- noTodo
+ unitTest
@@ -1983,7 +1999,7 @@
@@ -2049,7 +2065,7 @@
@@ -2123,7 +2139,7 @@
@@ -2173,6 +2189,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2274,7 +2297,7 @@
@@ -2351,7 +2374,7 @@
@@ -2428,7 +2451,7 @@
@@ -2473,6 +2496,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomEntriesTable.html b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomEntriesTable.html
index ca23fe87..1e5167cf 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomEntriesTable.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomEntriesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -1014,7 +1018,7 @@
@@ -1165,7 +1169,7 @@
@@ -1282,7 +1286,7 @@
@@ -1359,7 +1363,7 @@
@@ -1404,6 +1408,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1429,7 +1440,7 @@
@@ -1488,6 +1499,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1588,7 +1606,7 @@
@@ -1677,7 +1695,7 @@
@@ -1754,7 +1772,7 @@
@@ -1831,7 +1849,7 @@
@@ -1876,6 +1894,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2000,7 +2025,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -2018,13 +2043,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -2077,7 +2100,7 @@
@@ -2131,6 +2154,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2156,7 +2186,7 @@
@@ -2227,7 +2257,7 @@
@@ -2452,7 +2482,7 @@
@@ -2536,7 +2566,7 @@
@@ -2690,7 +2720,7 @@
@@ -2763,7 +2793,7 @@
@@ -2808,6 +2838,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2833,7 +2870,7 @@
@@ -2899,7 +2936,7 @@
@@ -2973,7 +3010,7 @@
@@ -3023,6 +3060,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3052,7 +3096,7 @@
@@ -3097,6 +3141,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3190,7 +3241,7 @@
@@ -3274,7 +3325,7 @@
@@ -3340,7 +3391,7 @@
@@ -3413,7 +3464,7 @@
@@ -3472,6 +3523,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3497,7 +3555,7 @@
@@ -3549,6 +3607,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3574,7 +3639,7 @@
@@ -3626,6 +3691,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3651,7 +3723,7 @@
@@ -3703,6 +3775,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3728,7 +3807,7 @@
@@ -3780,6 +3859,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3805,7 +3891,7 @@
@@ -3864,6 +3950,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3889,7 +3982,7 @@
@@ -3941,6 +4034,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3966,7 +4066,7 @@
@@ -4018,6 +4118,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4043,7 +4150,7 @@
@@ -4095,6 +4202,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4120,7 +4234,7 @@
@@ -4197,7 +4311,7 @@
@@ -4274,7 +4388,7 @@
@@ -4351,7 +4465,7 @@
@@ -4396,6 +4510,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomFieldsTable.html b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomFieldsTable.html
index c47c7a3f..01181449 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomFieldsTable.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomFieldsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1016,7 +1020,7 @@
@@ -1093,7 +1097,7 @@
@@ -1187,7 +1191,7 @@
@@ -1246,6 +1250,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1346,7 +1357,7 @@
@@ -1435,7 +1446,7 @@
@@ -1461,6 +1472,20 @@ Parameters
+
+ Tags
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -1571,7 +1596,7 @@
@@ -1616,6 +1641,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1649,7 +1681,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1667,13 +1699,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1726,7 +1756,7 @@
@@ -1805,7 +1835,7 @@
@@ -1876,7 +1906,7 @@
@@ -2024,7 +2054,7 @@
@@ -2101,7 +2131,7 @@
@@ -2146,6 +2176,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2167,7 +2204,7 @@
@@ -2233,7 +2270,7 @@
@@ -2307,7 +2344,7 @@
@@ -2357,6 +2394,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2458,7 +2502,7 @@
@@ -2535,7 +2579,7 @@
@@ -2612,7 +2656,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomLinksTable.html b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomLinksTable.html
index 2da5867b..07bfde2a 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomLinksTable.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomLinksTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1079,7 +1083,7 @@
@@ -1156,7 +1160,7 @@
@@ -1215,6 +1219,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1236,7 +1247,7 @@
@@ -1295,6 +1306,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1399,7 +1417,7 @@
@@ -1587,7 +1605,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1605,13 +1623,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1664,7 +1680,7 @@
@@ -1735,7 +1751,7 @@
@@ -1794,6 +1810,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1819,7 +1842,7 @@
@@ -1967,7 +1990,7 @@
@@ -2019,6 +2042,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2044,7 +2074,7 @@
@@ -2263,7 +2293,7 @@
@@ -2315,6 +2345,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2340,7 +2377,7 @@
@@ -2406,7 +2443,7 @@
@@ -2480,7 +2517,7 @@
@@ -2530,6 +2567,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2704,7 +2748,7 @@
@@ -2781,7 +2825,7 @@
@@ -2858,7 +2902,7 @@
@@ -2903,6 +2947,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomTablesTable.html b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomTablesTable.html
index 7c747cc4..eee85ef1 100644
--- a/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomTablesTable.html
+++ b/5/plugin/reference/classes/BcCustomContent-Model-Table-CustomTablesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1079,7 +1083,7 @@
@@ -1235,7 +1239,7 @@
@@ -1423,7 +1427,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1441,13 +1445,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1500,7 +1502,7 @@
@@ -1571,7 +1573,7 @@
@@ -1719,7 +1721,7 @@
@@ -1869,7 +1871,7 @@
@@ -1935,7 +1937,7 @@
@@ -2009,7 +2011,7 @@
@@ -2059,6 +2061,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2286,7 +2295,7 @@
@@ -2363,7 +2372,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminService.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminService.html
index 5556d1dd..f715b3fc 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminServiceInterface.html
index f323087e..e5a7e343 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomContentsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminService.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminService.html
index b9079a93..a3f4212e 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1230,7 +1234,7 @@
@@ -1321,7 +1325,7 @@
@@ -1401,7 +1405,7 @@
@@ -1461,6 +1465,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -1486,7 +1497,7 @@
@@ -1569,7 +1580,7 @@
@@ -1646,7 +1657,7 @@
@@ -1730,7 +1741,7 @@
@@ -1814,7 +1825,7 @@
@@ -1891,7 +1902,7 @@
@@ -1968,7 +1979,7 @@
@@ -2045,7 +2056,7 @@
@@ -2122,7 +2133,7 @@
@@ -2206,7 +2217,7 @@
@@ -2290,7 +2301,7 @@
@@ -2334,6 +2345,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2359,7 +2377,7 @@
@@ -2436,7 +2454,7 @@
@@ -2583,7 +2601,7 @@
@@ -2977,7 +2995,7 @@
@@ -3054,7 +3072,7 @@
@@ -3474,7 +3492,7 @@
@@ -3551,7 +3569,7 @@
@@ -3617,7 +3635,7 @@
@@ -3683,7 +3701,7 @@
@@ -3767,7 +3785,7 @@
@@ -3858,7 +3876,7 @@
@@ -3942,7 +3960,7 @@
@@ -4024,7 +4042,7 @@
@@ -4071,6 +4089,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -4096,7 +4121,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminServiceInterface.html
index b149a86b..356955d3 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomEntriesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminService.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminService.html
index 91313578..ff20e6f0 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -962,7 +966,7 @@
@@ -1039,7 +1043,7 @@
@@ -1200,7 +1204,7 @@
@@ -1270,7 +1274,7 @@
@@ -1330,7 +1334,7 @@
@@ -1407,7 +1411,7 @@
@@ -1695,7 +1699,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminServiceInterface.html
index fa4c24ce..88c6a41c 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomFieldsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminService.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminService.html
index 4469a6e6..a4cd1fa2 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -882,7 +886,7 @@
@@ -959,7 +963,7 @@
@@ -1038,7 +1042,7 @@
@@ -1206,7 +1210,7 @@
@@ -1290,7 +1294,7 @@
@@ -1367,7 +1371,7 @@
@@ -1451,7 +1455,7 @@
@@ -1681,7 +1685,7 @@
@@ -1765,7 +1769,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminServiceInterface.html
index 5e244c27..a9b96a5f 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomLinksAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminService.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminService.html
index 617f2c6c..aff0bae0 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -907,7 +911,7 @@
@@ -984,7 +988,7 @@
@@ -1145,7 +1149,7 @@
@@ -1229,7 +1233,7 @@
@@ -1306,7 +1310,7 @@
@@ -1383,7 +1387,7 @@
@@ -1681,7 +1685,7 @@
@@ -1758,7 +1762,7 @@
@@ -1835,7 +1839,7 @@
@@ -1989,7 +1993,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminServiceInterface.html
index 7046d62d..36908cb8 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Admin-CustomTablesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsService.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsService.html
index 98ee3490..4a8883b1 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsServiceInterface.html
index 83067fbc..e7185032 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomContentsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesService.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesService.html
index 785d9a57..56ebdd75 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1184,7 +1188,7 @@
@@ -1275,7 +1279,7 @@
@@ -1355,7 +1359,7 @@
@@ -1415,6 +1419,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -1440,7 +1451,7 @@
@@ -1523,7 +1534,7 @@
@@ -1600,7 +1611,7 @@
@@ -1684,7 +1695,7 @@
@@ -1768,7 +1779,7 @@
@@ -1845,7 +1856,7 @@
@@ -1922,7 +1933,7 @@
@@ -1999,7 +2010,7 @@
@@ -2076,7 +2087,7 @@
@@ -2160,7 +2171,7 @@
@@ -2244,7 +2255,7 @@
@@ -2288,6 +2299,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2313,7 +2331,7 @@
@@ -2390,7 +2408,7 @@
@@ -2537,7 +2555,7 @@
@@ -2691,7 +2709,7 @@
@@ -2768,7 +2786,7 @@
@@ -2936,7 +2954,7 @@
@@ -3013,7 +3031,7 @@
@@ -3079,7 +3097,7 @@
@@ -3145,7 +3163,7 @@
@@ -3229,7 +3247,7 @@
@@ -3320,7 +3338,7 @@
@@ -3404,7 +3422,7 @@
@@ -3486,7 +3504,7 @@
@@ -3533,6 +3551,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -3558,7 +3583,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesServiceInterface.html
index 1ae638be..a428ac9a 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomEntriesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsService.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsService.html
index b50cdf34..e8666888 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -961,7 +965,7 @@
@@ -1038,7 +1042,7 @@
@@ -1199,7 +1203,7 @@
@@ -1269,7 +1273,7 @@
@@ -1329,7 +1333,7 @@
@@ -1406,7 +1410,7 @@
@@ -1694,7 +1698,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsServiceInterface.html
index 91c06c37..61257d1c 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomFieldsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksService.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksService.html
index ab2833c4..07f15d63 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -881,7 +885,7 @@
@@ -958,7 +962,7 @@
@@ -1037,7 +1041,7 @@
@@ -1205,7 +1209,7 @@
@@ -1289,7 +1293,7 @@
@@ -1366,7 +1370,7 @@
@@ -1450,7 +1454,7 @@
@@ -1680,7 +1684,7 @@
@@ -1764,7 +1768,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksServiceInterface.html
index 8370e2e8..7578b040 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomLinksServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesService.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesService.html
index 1c0e39ee..aab9ff0f 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -896,7 +900,7 @@
@@ -973,7 +977,7 @@
@@ -1134,7 +1138,7 @@
@@ -1218,7 +1222,7 @@
@@ -1295,7 +1299,7 @@
@@ -1372,7 +1376,7 @@
@@ -1593,7 +1597,7 @@
@@ -1670,7 +1674,7 @@
@@ -1747,7 +1751,7 @@
@@ -1901,7 +1905,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesServiceInterface.html
index 15f797de..c5f13ea1 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-CustomTablesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontService.html b/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontService.html
index 36270c10..43bea203 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontService.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -562,7 +566,7 @@
@@ -746,7 +750,7 @@
@@ -783,7 +787,7 @@
@@ -825,7 +829,7 @@
@@ -888,7 +892,7 @@
@@ -961,7 +965,7 @@
@@ -1041,7 +1045,7 @@
@@ -1195,7 +1199,7 @@
@@ -1358,7 +1362,7 @@
@@ -1366,7 +1370,7 @@
public
- getViewVarsForIndex ( EntityInterface $customContent , ResultSetInterface $customEntries ) : array<string|int, mixed>
+ getViewVarsForIndex ( EntityInterface $customContent , PaginatedResultSet $customEntries ) : array<string|int, mixed>
@@ -1383,7 +1387,7 @@ Parameters
$customEntries
- : ResultSetInterface
+ : PaginatedResultSet
@@ -1442,7 +1446,7 @@
@@ -1610,7 +1614,7 @@
@@ -1683,7 +1687,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontServiceInterface.html b/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontServiceInterface.html
index 23c8afd0..57402c26 100644
--- a/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontServiceInterface.html
+++ b/5/plugin/reference/classes/BcCustomContent-Service-Front-CustomContentFrontServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcCustomContent-ServiceProvider-BcCustomContentServiceProvider.html b/5/plugin/reference/classes/BcCustomContent-ServiceProvider-BcCustomContentServiceProvider.html
index 1bb46124..2e7bac02 100644
--- a/5/plugin/reference/classes/BcCustomContent-ServiceProvider-BcCustomContentServiceProvider.html
+++ b/5/plugin/reference/classes/BcCustomContent-ServiceProvider-BcCustomContentServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -683,7 +687,7 @@
@@ -730,6 +734,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-Utility-CustomContentUtil.html b/5/plugin/reference/classes/BcCustomContent-Utility-CustomContentUtil.html
index 3c3d9a3a..822123cf 100644
--- a/5/plugin/reference/classes/BcCustomContent-Utility-CustomContentUtil.html
+++ b/5/plugin/reference/classes/BcCustomContent-Utility-CustomContentUtil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -622,7 +626,7 @@
@@ -674,6 +678,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-View-CustomContentAdminAppView.html b/5/plugin/reference/classes/BcCustomContent-View-CustomContentAdminAppView.html
index 69d422af..8c4a5572 100644
--- a/5/plugin/reference/classes/BcCustomContent-View-CustomContentAdminAppView.html
+++ b/5/plugin/reference/classes/BcCustomContent-View-CustomContentAdminAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1580,7 +1584,7 @@
@@ -1657,7 +1661,7 @@
@@ -1717,7 +1721,7 @@
@@ -1752,6 +1756,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1773,7 +1784,7 @@
@@ -1839,7 +1850,7 @@
@@ -1919,7 +1930,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-View-CustomContentFrontAppView.html b/5/plugin/reference/classes/BcCustomContent-View-CustomContentFrontAppView.html
index c4eb48a9..72ff8fd9 100644
--- a/5/plugin/reference/classes/BcCustomContent-View-CustomContentFrontAppView.html
+++ b/5/plugin/reference/classes/BcCustomContent-View-CustomContentFrontAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1111,7 +1115,7 @@
@@ -1188,7 +1192,7 @@
@@ -1248,7 +1252,7 @@
@@ -1283,6 +1287,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1304,7 +1315,7 @@
@@ -1370,7 +1381,7 @@
@@ -1450,7 +1461,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-View-Helper-BcCustomContentBaserHelper.html b/5/plugin/reference/classes/BcCustomContent-View-Helper-BcCustomContentBaserHelper.html
index a15896e8..e1df72c6 100644
--- a/5/plugin/reference/classes/BcCustomContent-View-Helper-BcCustomContentBaserHelper.html
+++ b/5/plugin/reference/classes/BcCustomContent-View-Helper-BcCustomContentBaserHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -696,7 +700,7 @@
@@ -731,6 +735,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAdminHelper.html b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAdminHelper.html
index c59276fe..9f2f4cd1 100644
--- a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAdminHelper.html
+++ b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAdminHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -556,7 +560,7 @@
@@ -907,7 +911,7 @@
@@ -1022,7 +1026,7 @@
@@ -1067,6 +1071,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1092,7 +1103,7 @@
@@ -1137,6 +1148,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1162,7 +1180,7 @@
@@ -1207,6 +1225,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1232,7 +1257,7 @@
@@ -1309,7 +1334,7 @@
@@ -1356,6 +1381,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1381,7 +1413,7 @@
@@ -1437,7 +1469,7 @@
@@ -1514,7 +1546,7 @@
@@ -1559,6 +1591,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1584,7 +1623,7 @@
@@ -1638,6 +1677,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1663,7 +1709,7 @@
@@ -1715,6 +1761,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1740,7 +1793,7 @@
@@ -1792,6 +1845,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1817,7 +1877,7 @@
@@ -1852,6 +1912,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1877,7 +1944,7 @@
@@ -2075,7 +2142,7 @@
@@ -2120,6 +2187,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2145,7 +2219,7 @@
@@ -2190,6 +2264,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2215,7 +2296,7 @@
@@ -2267,6 +2348,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2292,7 +2380,7 @@
@@ -2344,6 +2432,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2369,7 +2464,7 @@
@@ -2421,6 +2516,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2446,7 +2548,7 @@
@@ -2493,6 +2595,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2518,7 +2627,7 @@
@@ -2565,7 +2674,7 @@
- noTodo
+ unitTest
@@ -2651,7 +2760,7 @@
@@ -2735,7 +2844,7 @@
@@ -2780,6 +2889,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2805,7 +2921,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAppHelper.html b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAppHelper.html
index 6d6dfa61..4cf723e3 100644
--- a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAppHelper.html
+++ b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentAppHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -851,7 +855,7 @@
@@ -903,6 +907,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1082,7 +1093,7 @@
@@ -1134,6 +1145,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1159,7 +1177,7 @@
@@ -1206,6 +1224,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1287,7 +1312,7 @@
diff --git a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentArrayTrait.html b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentArrayTrait.html
index 30e8bcf0..195e65b0 100644
--- a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentArrayTrait.html
+++ b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentArrayTrait.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -619,7 +623,7 @@
@@ -679,6 +683,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -704,7 +715,7 @@
@@ -751,6 +762,13 @@
+
+
+ UnitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentHelper.html b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentHelper.html
index 6603b75c..c161618d 100644
--- a/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentHelper.html
+++ b/5/plugin/reference/classes/BcCustomContent-View-Helper-CustomContentHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1066,7 +1070,7 @@
@@ -1101,6 +1105,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1122,7 +1133,7 @@
@@ -1188,7 +1199,7 @@
@@ -1233,6 +1244,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1258,7 +1276,7 @@
@@ -1336,7 +1354,7 @@
@@ -1406,7 +1424,7 @@
@@ -1451,6 +1469,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1476,7 +1501,7 @@
@@ -1528,6 +1553,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1553,7 +1585,7 @@
@@ -1605,6 +1637,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1630,7 +1669,7 @@
@@ -1682,6 +1721,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1707,7 +1753,7 @@
@@ -1766,6 +1812,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1791,7 +1844,7 @@
@@ -1843,6 +1896,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1868,7 +1928,7 @@
@@ -1920,6 +1980,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1945,7 +2012,7 @@
@@ -1997,6 +2064,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2018,7 +2092,7 @@
@@ -2063,6 +2137,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2165,7 +2246,7 @@
@@ -2200,6 +2281,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2302,7 +2390,7 @@
@@ -2354,6 +2442,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2379,7 +2474,7 @@
@@ -2431,6 +2526,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2456,7 +2558,7 @@
@@ -2503,6 +2605,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2528,7 +2637,7 @@
@@ -2580,6 +2689,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2661,7 +2777,7 @@
@@ -2706,6 +2822,15 @@
+
+
+ unitTest
+
+
+
+
+
@@ -2727,7 +2852,7 @@
@@ -2804,7 +2929,7 @@
@@ -2839,6 +2964,15 @@
+
+
+ unitTest
+
+
+
+
+
diff --git a/5/plugin/reference/classes/BcEditorTemplate-BcEditorTemplatePlugin.html b/5/plugin/reference/classes/BcEditorTemplate-BcEditorTemplatePlugin.html
index 5d635d30..f5752288 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-BcEditorTemplatePlugin.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-BcEditorTemplatePlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -611,18 +615,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,7 +740,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -970,78 +962,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1308,7 +1228,7 @@
@@ -1353,6 +1273,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -1458,7 +1385,7 @@
@@ -1528,7 +1455,7 @@
@@ -1605,7 +1532,7 @@
@@ -1657,6 +1584,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1773,7 +1707,7 @@
@@ -1825,6 +1759,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2000,7 +1941,7 @@
@@ -2045,6 +1986,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -2131,7 +2079,7 @@
@@ -2176,6 +2124,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2268,11 +2223,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2539,7 +2494,7 @@
@@ -2895,7 +2850,7 @@
@@ -2961,7 +2916,7 @@
@@ -3034,7 +2989,7 @@
@@ -3277,7 +3232,7 @@
@@ -3497,8 +3452,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcEditorTemplate-Controller-Api-Admin-EditorTemplatesController.html b/5/plugin/reference/classes/BcEditorTemplate-Controller-Api-Admin-EditorTemplatesController.html
index cf2b6d8b..be14c937 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-Controller-Api-Admin-EditorTemplatesController.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-Controller-Api-Admin-EditorTemplatesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -612,18 +616,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -794,6 +786,13 @@
単一データAPI
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -957,78 +956,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1537,7 +1464,7 @@
@@ -1866,7 +1793,7 @@
@@ -2776,6 +2703,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3445,6 +3430,7 @@ Return values
setTitle()
setupFrontView()
view()
+ viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcEditorTemplate-Model-Entity-EditorTemplate.html b/5/plugin/reference/classes/BcEditorTemplate-Model-Entity-EditorTemplate.html
index 366b3d77..c5358376 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-Model-Entity-EditorTemplate.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-Model-Entity-EditorTemplate.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -623,7 +627,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -678,7 +682,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -858,7 +862,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcEditorTemplate-Model-Table-EditorTemplatesTable.html b/5/plugin/reference/classes/BcEditorTemplate-Model-Table-EditorTemplatesTable.html
index 22662234..98c02fb7 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-Model-Table-EditorTemplatesTable.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-Model-Table-EditorTemplatesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -983,7 +987,7 @@
@@ -1139,7 +1143,7 @@
@@ -1327,7 +1331,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1345,13 +1349,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1404,7 +1406,7 @@
@@ -1475,7 +1477,7 @@
@@ -1623,7 +1625,7 @@
@@ -1773,7 +1775,7 @@
@@ -1839,7 +1841,7 @@
@@ -1913,7 +1915,7 @@
@@ -1963,6 +1965,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2064,7 +2073,7 @@
@@ -2141,7 +2150,7 @@
diff --git a/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminService.html b/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminService.html
index 124d79a8..30cf06d4 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminService.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminServiceInterface.html b/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminServiceInterface.html
index 59af4aa5..4a0864fd 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-Service-Admin-EditorTemplatesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesService.html b/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesService.html
index 7418e95b..e965ecf1 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesService.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesServiceInterface.html b/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesServiceInterface.html
index e2c5bca3..907d2a88 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesServiceInterface.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-Service-EditorTemplatesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcEditorTemplate-ServiceProvider-BcEditorTemplateServiceProvider.html b/5/plugin/reference/classes/BcEditorTemplate-ServiceProvider-BcEditorTemplateServiceProvider.html
index 255f35ee..db31f71a 100644
--- a/5/plugin/reference/classes/BcEditorTemplate-ServiceProvider-BcEditorTemplateServiceProvider.html
+++ b/5/plugin/reference/classes/BcEditorTemplate-ServiceProvider-BcEditorTemplateServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -683,7 +687,7 @@
@@ -728,6 +732,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcFavorite-BcFavoritePlugin.html b/5/plugin/reference/classes/BcFavorite-BcFavoritePlugin.html
index 08c44553..af38bafa 100644
--- a/5/plugin/reference/classes/BcFavorite-BcFavoritePlugin.html
+++ b/5/plugin/reference/classes/BcFavorite-BcFavoritePlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -805,6 +797,13 @@
お気に入り情報取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -968,78 +967,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1306,7 +1233,7 @@
@@ -1351,6 +1278,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1541,7 +1475,7 @@
@@ -1619,7 +1553,7 @@
@@ -1664,6 +1598,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1685,7 +1626,7 @@
@@ -1737,6 +1678,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1849,7 +1797,7 @@
@@ -1901,6 +1849,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1922,7 +1877,7 @@
@@ -1957,6 +1912,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1978,7 +1940,7 @@
@@ -2614,7 +2576,7 @@
@@ -2661,6 +2623,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2883,6 +2852,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3554,6 +3581,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcFavorite-Event-BcFavoriteViewEventListener.html b/5/plugin/reference/classes/BcFavorite-Event-BcFavoriteViewEventListener.html
index ea193cac..327a5156 100644
--- a/5/plugin/reference/classes/BcFavorite-Event-BcFavoriteViewEventListener.html
+++ b/5/plugin/reference/classes/BcFavorite-Event-BcFavoriteViewEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcFavorite-Model-Entity-Favorite.html b/5/plugin/reference/classes/BcFavorite-Model-Entity-Favorite.html
index 06b2cbf7..bfc0931b 100644
--- a/5/plugin/reference/classes/BcFavorite-Model-Entity-Favorite.html
+++ b/5/plugin/reference/classes/BcFavorite-Model-Entity-Favorite.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcFavorite-Model-Table-FavoritesTable.html b/5/plugin/reference/classes/BcFavorite-Model-Table-FavoritesTable.html
index 0a2a74fc..9811602a 100644
--- a/5/plugin/reference/classes/BcFavorite-Model-Table-FavoritesTable.html
+++ b/5/plugin/reference/classes/BcFavorite-Model-Table-FavoritesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -998,7 +1002,7 @@
@@ -1154,7 +1158,7 @@
@@ -1342,7 +1346,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1360,13 +1364,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1419,7 +1421,7 @@
@@ -1490,7 +1492,7 @@
@@ -1715,7 +1717,7 @@
@@ -1944,7 +1946,7 @@
@@ -2010,7 +2012,7 @@
@@ -2084,7 +2086,7 @@
@@ -2134,6 +2136,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2235,7 +2244,7 @@
@@ -2312,7 +2321,7 @@
diff --git a/5/plugin/reference/classes/BcFavorite-Model-Validation-FavoriteValidation.html b/5/plugin/reference/classes/BcFavorite-Model-Validation-FavoriteValidation.html
index 381afb93..9a86169b 100644
--- a/5/plugin/reference/classes/BcFavorite-Model-Validation-FavoriteValidation.html
+++ b/5/plugin/reference/classes/BcFavorite-Model-Validation-FavoriteValidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcFavorite-Service-FavoritesService.html b/5/plugin/reference/classes/BcFavorite-Service-FavoritesService.html
index 1c796f3a..37e9f93e 100644
--- a/5/plugin/reference/classes/BcFavorite-Service-FavoritesService.html
+++ b/5/plugin/reference/classes/BcFavorite-Service-FavoritesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -555,7 +559,7 @@
@@ -697,7 +701,7 @@
@@ -739,7 +743,7 @@
@@ -795,7 +799,7 @@
@@ -886,7 +890,7 @@
@@ -971,7 +975,7 @@
@@ -1044,7 +1048,7 @@
@@ -1121,7 +1125,7 @@
@@ -1198,7 +1202,7 @@
@@ -1265,7 +1269,7 @@
diff --git a/5/plugin/reference/classes/BcFavorite-Service-FavoritesServiceInterface.html b/5/plugin/reference/classes/BcFavorite-Service-FavoritesServiceInterface.html
index ffe1211b..6855af18 100644
--- a/5/plugin/reference/classes/BcFavorite-Service-FavoritesServiceInterface.html
+++ b/5/plugin/reference/classes/BcFavorite-Service-FavoritesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcFavorite-ServiceProvider-BcFavoriteServiceProvider.html b/5/plugin/reference/classes/BcFavorite-ServiceProvider-BcFavoriteServiceProvider.html
index 716e1a11..51feaf19 100644
--- a/5/plugin/reference/classes/BcFavorite-ServiceProvider-BcFavoriteServiceProvider.html
+++ b/5/plugin/reference/classes/BcFavorite-ServiceProvider-BcFavoriteServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -683,7 +687,7 @@
@@ -728,6 +732,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcFront-BcFrontPlugin.html b/5/plugin/reference/classes/BcFront-BcFrontPlugin.html
index 430d5022..81b1a5f0 100644
--- a/5/plugin/reference/classes/BcFront-BcFrontPlugin.html
+++ b/5/plugin/reference/classes/BcFront-BcFrontPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -871,7 +875,7 @@
@@ -1017,7 +1021,7 @@
@@ -1052,7 +1056,7 @@
@@ -1331,7 +1335,7 @@
Model
+
+
+ ORM
+
Routing
@@ -885,7 +889,7 @@
@@ -1031,7 +1035,7 @@
@@ -1136,7 +1140,7 @@
@@ -1415,7 +1419,7 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcInstaller-Command-InstallCommand.html b/5/plugin/reference/classes/BcInstaller-Command-InstallCommand.html
index 4dab93c1..73508e95 100644
--- a/5/plugin/reference/classes/BcInstaller-Command-InstallCommand.html
+++ b/5/plugin/reference/classes/BcInstaller-Command-InstallCommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1045,7 +1049,7 @@
diff --git a/5/plugin/reference/classes/BcInstaller-Controller-Admin-InstallationsController.html b/5/plugin/reference/classes/BcInstaller-Controller-Admin-InstallationsController.html
index 870c92df..a64d29c5 100644
--- a/5/plugin/reference/classes/BcInstaller-Controller-Admin-InstallationsController.html
+++ b/5/plugin/reference/classes/BcInstaller-Controller-Admin-InstallationsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -613,18 +617,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -722,7 +714,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -974,78 +966,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1462,7 +1382,7 @@
@@ -1976,11 +1896,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2453,7 +2373,7 @@
@@ -2521,7 +2441,7 @@
@@ -2877,7 +2797,7 @@
@@ -2943,7 +2863,7 @@
@@ -3016,7 +2936,7 @@
@@ -3259,7 +3179,7 @@
@@ -3479,8 +3399,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcInstaller-Mailer-Admin-InstallerMailer.html b/5/plugin/reference/classes/BcInstaller-Mailer-Admin-InstallerMailer.html
index 41e2936e..01a046fb 100644
--- a/5/plugin/reference/classes/BcInstaller-Mailer-Admin-InstallerMailer.html
+++ b/5/plugin/reference/classes/BcInstaller-Mailer-Admin-InstallerMailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminService.html b/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminService.html
index 513dbbc8..84d0f0fb 100644
--- a/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminService.html
+++ b/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -899,7 +903,7 @@
@@ -977,7 +981,7 @@
@@ -1040,7 +1044,7 @@
@@ -1125,7 +1129,7 @@
@@ -1181,7 +1185,7 @@
@@ -1311,7 +1315,7 @@
@@ -1399,7 +1403,7 @@
@@ -1459,7 +1463,7 @@
@@ -1536,7 +1540,7 @@
@@ -1666,7 +1670,7 @@
@@ -1726,7 +1730,7 @@
@@ -1786,7 +1790,7 @@
@@ -1986,7 +1990,7 @@
@@ -2572,7 +2576,7 @@
@@ -2632,7 +2636,7 @@
@@ -2852,7 +2856,7 @@
@@ -2918,7 +2922,7 @@
@@ -2997,7 +3001,7 @@
@@ -3071,7 +3075,7 @@
@@ -3141,7 +3145,7 @@
@@ -3356,7 +3360,7 @@
diff --git a/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminServiceInterface.html b/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminServiceInterface.html
index cf85ee38..67a34a95 100644
--- a/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcInstaller-Service-Admin-InstallationsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcInstaller-Service-InstallationsService.html b/5/plugin/reference/classes/BcInstaller-Service-InstallationsService.html
index 74975cc9..7eba4a18 100644
--- a/5/plugin/reference/classes/BcInstaller-Service-InstallationsService.html
+++ b/5/plugin/reference/classes/BcInstaller-Service-InstallationsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -558,7 +562,7 @@
@@ -847,7 +851,7 @@
@@ -889,7 +893,7 @@
@@ -952,7 +956,7 @@
@@ -1037,7 +1041,7 @@
@@ -1093,7 +1097,7 @@
@@ -1153,7 +1157,7 @@
@@ -1241,7 +1245,7 @@
@@ -1301,7 +1305,7 @@
@@ -1378,7 +1382,7 @@
@@ -1438,7 +1442,7 @@
@@ -1498,7 +1502,7 @@
@@ -1558,7 +1562,7 @@
@@ -1618,7 +1622,7 @@
@@ -1849,7 +1853,7 @@
@@ -1909,7 +1913,7 @@
@@ -1979,7 +1983,7 @@
@@ -2045,7 +2049,7 @@
@@ -2124,7 +2128,7 @@
@@ -2198,7 +2202,7 @@
@@ -2268,7 +2272,7 @@
@@ -2410,7 +2414,7 @@
diff --git a/5/plugin/reference/classes/BcInstaller-Service-InstallationsServiceInterface.html b/5/plugin/reference/classes/BcInstaller-Service-InstallationsServiceInterface.html
index 6a4d59a8..69fe8227 100644
--- a/5/plugin/reference/classes/BcInstaller-Service-InstallationsServiceInterface.html
+++ b/5/plugin/reference/classes/BcInstaller-Service-InstallationsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcInstaller-ServiceProvider-BcInstallerServiceProvider.html b/5/plugin/reference/classes/BcInstaller-ServiceProvider-BcInstallerServiceProvider.html
index 36e9b2e5..e9fe9bf2 100644
--- a/5/plugin/reference/classes/BcInstaller-ServiceProvider-BcInstallerServiceProvider.html
+++ b/5/plugin/reference/classes/BcInstaller-ServiceProvider-BcInstallerServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -683,7 +687,7 @@
@@ -728,6 +732,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcMail-BcMailPlugin.html b/5/plugin/reference/classes/BcMail-BcMailPlugin.html
index 1c9dbb63..9b3ed376 100644
--- a/5/plugin/reference/classes/BcMail-BcMailPlugin.html
+++ b/5/plugin/reference/classes/BcMail-BcMailPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -710,7 +702,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -932,78 +924,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1354,7 +1274,7 @@
@@ -1424,7 +1344,7 @@
@@ -1469,6 +1389,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1871,11 +1798,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2142,7 +2069,7 @@
@@ -2498,7 +2425,7 @@
@@ -2564,7 +2491,7 @@
@@ -2637,7 +2564,7 @@
@@ -2880,7 +2807,7 @@
@@ -3100,8 +3027,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcMail-Controller-Admin-MailConfigsController.html b/5/plugin/reference/classes/BcMail-Controller-Admin-MailConfigsController.html
index fb4081bd..3ef3c3ab 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Admin-MailConfigsController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Admin-MailConfigsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -717,7 +709,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -939,78 +931,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1361,7 +1281,7 @@
@@ -1431,7 +1351,7 @@
@@ -1476,6 +1396,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1742,7 +1669,7 @@
@@ -1787,6 +1714,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1948,11 +1882,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2219,7 +2153,7 @@
@@ -2575,7 +2509,7 @@
@@ -2641,7 +2575,7 @@
@@ -2714,7 +2648,7 @@
@@ -2957,7 +2891,7 @@
@@ -3177,8 +3111,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcMail-Controller-Admin-MailContentsController.html b/5/plugin/reference/classes/BcMail-Controller-Admin-MailContentsController.html
index 10ba9273..0e107a9d 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Admin-MailContentsController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Admin-MailContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -556,7 +560,7 @@
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -717,7 +709,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -953,78 +945,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1375,7 +1295,7 @@
@@ -1445,7 +1365,7 @@
@@ -1490,6 +1410,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1602,7 +1529,7 @@
@@ -1829,7 +1756,7 @@
@@ -1963,11 +1890,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2234,7 +2161,7 @@
@@ -2590,7 +2517,7 @@
@@ -2656,7 +2583,7 @@
@@ -2729,7 +2656,7 @@
@@ -2972,7 +2899,7 @@
@@ -3090,7 +3017,7 @@
@@ -3160,7 +3087,7 @@
@@ -3332,8 +3259,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcMail-Controller-Admin-MailFieldsController.html b/5/plugin/reference/classes/BcMail-Controller-Admin-MailFieldsController.html
index 86a34302..aada53e2 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Admin-MailFieldsController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Admin-MailFieldsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -752,7 +744,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -988,78 +980,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1326,7 +1246,7 @@
@@ -1378,6 +1298,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1483,7 +1410,7 @@
@@ -1549,7 +1476,7 @@
@@ -1594,6 +1521,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1615,7 +1549,7 @@
@@ -1674,6 +1608,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -1695,7 +1636,7 @@
@@ -1762,6 +1703,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1874,7 +1822,7 @@
@@ -1933,6 +1881,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2108,7 +2063,7 @@
@@ -2160,6 +2115,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2181,7 +2143,7 @@
@@ -2216,6 +2178,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2308,7 +2277,7 @@
@@ -2367,6 +2336,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2388,11 +2364,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2659,7 +2635,7 @@
@@ -2718,6 +2694,13 @@
+
+
+ UnitTest
+
+
+
+
@@ -2739,7 +2722,7 @@
@@ -2795,7 +2778,7 @@
@@ -3151,7 +3134,7 @@
@@ -3217,7 +3200,7 @@
@@ -3290,7 +3273,7 @@
@@ -3533,7 +3516,7 @@
@@ -3753,8 +3736,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcMail-Controller-Admin-MailMessagesController.html b/5/plugin/reference/classes/BcMail-Controller-Admin-MailMessagesController.html
index 7a9b7aa3..89863bbc 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Admin-MailMessagesController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Admin-MailMessagesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -738,7 +730,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -967,78 +959,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1521,7 +1441,7 @@
@@ -1566,6 +1486,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2196,11 +2123,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2547,7 +2474,7 @@
@@ -2903,7 +2830,7 @@
@@ -2969,7 +2896,7 @@
@@ -3042,7 +2969,7 @@
@@ -3285,7 +3212,7 @@
@@ -3505,8 +3432,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailContentsController.html b/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailContentsController.html
index e1f80932..18d47345 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailContentsController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -798,6 +790,13 @@
メールコンテンツAPI 単一データ取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -961,78 +960,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1541,7 +1468,7 @@
@@ -1943,7 +1870,7 @@
@@ -2846,6 +2773,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3516,6 +3501,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailFieldsController.html b/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailFieldsController.html
index 2229af72..cf1eacef 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailFieldsController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailFieldsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -812,6 +804,13 @@
[API] メールフィールド API 単一データ取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -975,78 +974,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1632,7 +1559,7 @@
@@ -2048,7 +1975,7 @@
@@ -3035,6 +2962,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3707,6 +3692,7 @@
Return values
setupFrontView()
update_sort()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailMessagesController.html b/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailMessagesController.html
index 8619819b..4cefc977 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailMessagesController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Api-Admin-MailMessagesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -798,6 +790,13 @@
[API] 受信メール詳細
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -961,78 +960,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1632,7 +1559,7 @@
@@ -2050,7 +1977,7 @@
@@ -2887,6 +2814,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3557,6 +3542,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcMail-Controller-Api-MailContentsController.html b/5/plugin/reference/classes/BcMail-Controller-Api-MailContentsController.html
index ecba7541..9a21f677 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Api-MailContentsController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Api-MailContentsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -741,6 +733,13 @@
フロント用のViewクラスをセットアップする
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -904,78 +903,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1326,7 +1253,7 @@
@@ -1403,7 +1330,7 @@
@@ -1572,7 +1499,7 @@
@@ -1876,7 +1803,7 @@
@@ -2200,6 +2127,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2862,6 +2847,7 @@
Return values
redirectIfIsRequireMaintenance()
setTitle()
setupFrontView()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcMail-Controller-Api-MailFieldsController.html b/5/plugin/reference/classes/BcMail-Controller-Api-MailFieldsController.html
index 2faa760c..202bb165 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Api-MailFieldsController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Api-MailFieldsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
[API] メールフィールド API 単一データ取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1333,7 +1260,7 @@
@@ -1410,7 +1337,7 @@
@@ -1579,7 +1506,7 @@
@@ -1883,7 +1810,7 @@
@@ -2287,6 +2214,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2950,6 +2935,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcMail-Controller-Api-MailMessagesController.html b/5/plugin/reference/classes/BcMail-Controller-Api-MailMessagesController.html
index edd0e300..2637d3a9 100644
--- a/5/plugin/reference/classes/BcMail-Controller-Api-MailMessagesController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-Api-MailMessagesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -748,6 +740,13 @@
[API] バリデーション
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -911,78 +910,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1497,7 +1424,7 @@
@@ -1666,7 +1593,7 @@
@@ -1897,7 +1824,7 @@
@@ -2301,6 +2228,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2964,6 +2949,7 @@
Return values
setTitle()
setupFrontView()
validate()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcMail-Controller-MailController.html b/5/plugin/reference/classes/BcMail-Controller-MailController.html
index 7c7bcb60..70dc57e1 100644
--- a/5/plugin/reference/classes/BcMail-Controller-MailController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-MailController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -615,18 +619,6 @@
データベースデータ
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -969,78 +961,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1450,7 +1370,7 @@
@@ -1509,7 +1429,7 @@
@@ -1582,7 +1502,7 @@
@@ -1918,7 +1838,7 @@
@@ -2337,7 +2257,7 @@
@@ -2428,7 +2348,7 @@
@@ -3129,8 +3049,6 @@ Return values
$BcMessage
$css
$dbDatas
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcMail-Controller-MailFrontAppController.html b/5/plugin/reference/classes/BcMail-Controller-MailFrontAppController.html
index 38109974..89e17c69 100644
--- a/5/plugin/reference/classes/BcMail-Controller-MailFrontAppController.html
+++ b/5/plugin/reference/classes/BcMail-Controller-MailFrontAppController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -601,18 +605,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -846,78 +838,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1338,7 +1258,7 @@
@@ -1383,6 +1303,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2601,8 +2528,6 @@ Return values
diff --git a/5/plugin/reference/classes/BcMail-Event-BcMailViewEventListener.html b/5/plugin/reference/classes/BcMail-Event-BcMailViewEventListener.html
index e0163a5a..d766cd8a 100644
--- a/5/plugin/reference/classes/BcMail-Event-BcMailViewEventListener.html
+++ b/5/plugin/reference/classes/BcMail-Event-BcMailViewEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Mailer-MailMessageMailer.html b/5/plugin/reference/classes/BcMail-Mailer-MailMessageMailer.html
index 0739f0b8..41e795a9 100644
--- a/5/plugin/reference/classes/BcMail-Mailer-MailMessageMailer.html
+++ b/5/plugin/reference/classes/BcMail-Mailer-MailMessageMailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Model-Entity-MailConfig.html b/5/plugin/reference/classes/BcMail-Model-Entity-MailConfig.html
index cadada1c..c67c194c 100644
--- a/5/plugin/reference/classes/BcMail-Model-Entity-MailConfig.html
+++ b/5/plugin/reference/classes/BcMail-Model-Entity-MailConfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -605,7 +609,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -666,7 +670,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -738,7 +742,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcMail-Model-Entity-MailContent.html b/5/plugin/reference/classes/BcMail-Model-Entity-MailContent.html
index 56ce82d1..1524880d 100644
--- a/5/plugin/reference/classes/BcMail-Model-Entity-MailContent.html
+++ b/5/plugin/reference/classes/BcMail-Model-Entity-MailContent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -599,7 +603,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -629,19 +633,19 @@
$modified
- : FrozenTime
+ : DateTime
$publish_begin
- : FrozenTime
+ : DateTime
$publish_end
- : FrozenTime
+ : DateTime
@@ -794,7 +798,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -974,7 +978,7 @@
public
- FrozenTime
+ DateTime
$modified
@@ -1010,7 +1014,7 @@
public
- FrozenTime
+ DateTime
$publish_begin
@@ -1046,7 +1050,7 @@
public
- FrozenTime
+ DateTime
$publish_end
diff --git a/5/plugin/reference/classes/BcMail-Model-Entity-MailField.html b/5/plugin/reference/classes/BcMail-Model-Entity-MailField.html
index 6a15e0da..fba2d5fc 100644
--- a/5/plugin/reference/classes/BcMail-Model-Entity-MailField.html
+++ b/5/plugin/reference/classes/BcMail-Model-Entity-MailField.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -623,7 +627,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -683,7 +687,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -990,7 +994,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -1350,7 +1354,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcMail-Model-Entity-MailMessage.html b/5/plugin/reference/classes/BcMail-Model-Entity-MailMessage.html
index ac41c5e7..88621dd9 100644
--- a/5/plugin/reference/classes/BcMail-Model-Entity-MailMessage.html
+++ b/5/plugin/reference/classes/BcMail-Model-Entity-MailMessage.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -605,7 +609,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -654,7 +658,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -726,7 +730,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcMail-Model-Table-MailAppTable.html b/5/plugin/reference/classes/BcMail-Model-Table-MailAppTable.html
index 446e2e75..ea379f3a 100644
--- a/5/plugin/reference/classes/BcMail-Model-Table-MailAppTable.html
+++ b/5/plugin/reference/classes/BcMail-Model-Table-MailAppTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -974,7 +978,7 @@
@@ -1130,7 +1134,7 @@
@@ -1318,7 +1322,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1336,13 +1340,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1395,7 +1397,7 @@
@@ -1466,7 +1468,7 @@
@@ -1614,7 +1616,7 @@
@@ -1691,7 +1693,7 @@
@@ -1766,7 +1768,7 @@
@@ -1832,7 +1834,7 @@
@@ -1906,7 +1908,7 @@
@@ -1956,6 +1958,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2057,7 +2066,7 @@
@@ -2134,7 +2143,7 @@
diff --git a/5/plugin/reference/classes/BcMail-Model-Table-MailConfigsTable.html b/5/plugin/reference/classes/BcMail-Model-Table-MailConfigsTable.html
index 70b2a137..21de87b6 100644
--- a/5/plugin/reference/classes/BcMail-Model-Table-MailConfigsTable.html
+++ b/5/plugin/reference/classes/BcMail-Model-Table-MailConfigsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -988,7 +992,7 @@
@@ -1144,7 +1148,7 @@
@@ -1332,7 +1336,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1350,13 +1354,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1409,7 +1411,7 @@
@@ -1480,7 +1482,7 @@
@@ -1628,7 +1630,7 @@
@@ -1780,7 +1782,7 @@
@@ -1846,7 +1848,7 @@
@@ -1920,7 +1922,7 @@
@@ -1970,6 +1972,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2071,7 +2080,7 @@
@@ -2148,7 +2157,7 @@
diff --git a/5/plugin/reference/classes/BcMail-Model-Table-MailContentsTable.html b/5/plugin/reference/classes/BcMail-Model-Table-MailContentsTable.html
index 780452bf..c3d4907e 100644
--- a/5/plugin/reference/classes/BcMail-Model-Table-MailContentsTable.html
+++ b/5/plugin/reference/classes/BcMail-Model-Table-MailContentsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -695,13 +699,6 @@
並び順を変更する
-
- checkSslUrl()
-
- : bool
-
-SSL用のURLが設定されているかチェックする
-
copy()
@@ -1177,7 +1174,7 @@
@@ -1254,7 +1251,7 @@
@@ -1282,6 +1279,20 @@ Parameters
+
+ Tags
+
+
+
+
+
+ unitTest
+
+
+
+
+
+
@@ -1305,7 +1316,7 @@
@@ -1447,7 +1458,7 @@
@@ -1516,76 +1527,6 @@
-
-
-
-
-
- checkSslUrl()
-
-
-
-
-
- SSL用のURLが設定されているかチェックする
-
-
- public
- checkSslUrl ( mixed $value ) : bool
-
-
-
-
-
- Parameters
-
-
- $value
- : mixed
-
-
-
-
-
-
-
-
- Tags
-
-
-
-
-
- checked
-
-
-
-
-
-
- noTodo
-
-
-
-
-
-
-
-
-
Return values
bool
@@ -1606,7 +1547,7 @@
@@ -1711,7 +1652,7 @@
@@ -1756,6 +1697,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1880,7 +1828,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1898,13 +1846,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1957,7 +1903,7 @@
@@ -2006,7 +1952,7 @@
@@ -2049,7 +1995,7 @@
@@ -2120,7 +2066,7 @@
@@ -2345,7 +2291,7 @@
@@ -2574,7 +2520,7 @@
@@ -2640,7 +2586,7 @@
@@ -2714,7 +2660,7 @@
@@ -2764,6 +2710,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2865,7 +2818,7 @@
@@ -2942,7 +2895,7 @@
@@ -3207,7 +3160,6 @@ Return values
beforeSave()
belongsToMany()
changeSort()
- checkSslUrl()
copy()
createSearchIndex()
dispatchLayerEvent()
diff --git a/5/plugin/reference/classes/BcMail-Model-Table-MailFieldsTable.html b/5/plugin/reference/classes/BcMail-Model-Table-MailFieldsTable.html
index 4038faa4..02889a60 100644
--- a/5/plugin/reference/classes/BcMail-Model-Table-MailFieldsTable.html
+++ b/5/plugin/reference/classes/BcMail-Model-Table-MailFieldsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -737,7 +741,9 @@
: bool
メールフィールドの値として正しい文字列か検証する
-半角英数-_
+半角小文字英数-_
+メールフィールドは、DBテーブルのフィールドとして利用されるため、
+大文字を利用した場合にクォートを入れないとエラーとなってしまう
initialize()
@@ -1027,7 +1033,7 @@
@@ -1183,7 +1189,7 @@
@@ -1272,7 +1278,7 @@
@@ -1447,7 +1453,7 @@
@@ -1533,7 +1539,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1551,13 +1557,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1610,7 +1614,7 @@
@@ -1659,6 +1663,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1688,7 +1699,7 @@
@@ -1759,7 +1770,7 @@
@@ -1833,7 +1844,7 @@
@@ -1981,7 +1992,7 @@
@@ -2058,12 +2069,14 @@
メールフィールドの値として正しい文字列か検証する
-半角英数-_
+半角小文字英数-_
+メールフィールドは、DBテーブルのフィールドとして利用されるため、
+大文字を利用した場合にクォートを入れないとエラーとなってしまう
public
@@ -2104,6 +2117,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2204,7 +2224,7 @@
@@ -2270,7 +2290,7 @@
@@ -2344,7 +2364,7 @@
@@ -2394,6 +2414,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2495,7 +2522,7 @@
@@ -2572,7 +2599,7 @@
@@ -2649,7 +2676,7 @@
@@ -2701,6 +2728,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2726,7 +2760,7 @@
@@ -2771,6 +2805,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcMail-Model-Table-MailMessagesTable.html b/5/plugin/reference/classes/BcMail-Model-Table-MailMessagesTable.html
index d42f17ef..a6a55090 100644
--- a/5/plugin/reference/classes/BcMail-Model-Table-MailMessagesTable.html
+++ b/5/plugin/reference/classes/BcMail-Model-Table-MailMessagesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -556,7 +560,7 @@
@@ -725,7 +729,7 @@
find()
- : array<string|int, mixed>
+ : SelectQuery
find
@@ -900,7 +904,7 @@
@@ -937,7 +941,7 @@
@@ -1168,7 +1172,7 @@
@@ -1245,7 +1249,7 @@
@@ -1390,7 +1394,7 @@
@@ -1479,7 +1483,7 @@
@@ -1569,7 +1573,7 @@
@@ -1639,7 +1643,7 @@
@@ -1723,7 +1727,7 @@
@@ -1772,7 +1776,7 @@
@@ -1934,7 +1938,7 @@
@@ -1942,7 +1946,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string|int, mixed> $options = [] ] ) : array<string|int, mixed>
+ find ( [ string $type = 'all' ] , mixed ... $args ) : SelectQuery
@@ -1958,13 +1962,11 @@ Parameters
- $options
- : array<string|int, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1974,7 +1976,7 @@ Parameters
Return values
- array<string|int, mixed>
+ SelectQuery
@@ -1992,7 +1994,7 @@
@@ -2063,7 +2065,7 @@
@@ -2211,7 +2213,7 @@
@@ -2288,7 +2290,7 @@
@@ -2335,6 +2337,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2356,7 +2365,7 @@
@@ -2422,7 +2431,7 @@
@@ -2496,7 +2505,7 @@
@@ -2535,7 +2544,7 @@
@@ -2585,6 +2594,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2614,7 +2630,7 @@
@@ -2759,7 +2775,7 @@
@@ -2845,7 +2861,7 @@
@@ -2911,7 +2927,7 @@
@@ -2977,7 +2993,7 @@
@@ -3054,7 +3070,7 @@
@@ -3131,7 +3147,7 @@
@@ -3201,7 +3217,7 @@
@@ -3274,7 +3290,7 @@
@@ -3347,7 +3363,7 @@
diff --git a/5/plugin/reference/classes/BcMail-Model-Validation-MailMessageValidation.html b/5/plugin/reference/classes/BcMail-Model-Validation-MailMessageValidation.html
index 89c89a18..e3bfa58d 100644
--- a/5/plugin/reference/classes/BcMail-Model-Validation-MailMessageValidation.html
+++ b/5/plugin/reference/classes/BcMail-Model-Validation-MailMessageValidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminService.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminService.html
index 78e6d29f..808f02f9 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminService.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminServiceInterface.html
index 34fe48fc..b1a8e083 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailConfigsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminService.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminService.html
index 0ccb9ae4..f9e32b3f 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminService.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminServiceInterface.html
index 60c97ec5..1339cba9 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailContentsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminService.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminService.html
index f4f9f9cc..08818129 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminService.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1028,7 +1032,7 @@
@@ -1112,7 +1116,7 @@
@@ -1203,7 +1207,7 @@
@@ -1283,7 +1287,7 @@
@@ -1356,7 +1360,7 @@
@@ -1513,7 +1517,7 @@
@@ -1653,7 +1657,7 @@
@@ -1726,7 +1730,7 @@
@@ -1953,7 +1957,7 @@
@@ -2359,7 +2363,7 @@
@@ -2432,7 +2436,7 @@
@@ -2505,7 +2509,7 @@
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminServiceInterface.html
index e78a0dad..97ef373b 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailFieldsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminService.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminService.html
index 79824359..b57f0cda 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminService.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -2250,7 +2254,7 @@
@@ -2334,7 +2338,7 @@
@@ -2418,7 +2422,7 @@
diff --git a/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminServiceInterface.html
index b68caf6e..716715fa 100644
--- a/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-Admin-MailMessagesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -544,7 +548,7 @@
@@ -613,7 +617,7 @@
diff --git a/5/plugin/reference/classes/BcMail-Service-Front-MailFrontService.html b/5/plugin/reference/classes/BcMail-Service-Front-MailFrontService.html
index 26c4a02e..3665841d 100644
--- a/5/plugin/reference/classes/BcMail-Service-Front-MailFrontService.html
+++ b/5/plugin/reference/classes/BcMail-Service-Front-MailFrontService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-Front-MailFrontServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-Front-MailFrontServiceInterface.html
index 92e4e9d1..a1523079 100644
--- a/5/plugin/reference/classes/BcMail-Service-Front-MailFrontServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-Front-MailFrontServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-MailConfigsService.html b/5/plugin/reference/classes/BcMail-Service-MailConfigsService.html
index 6f3564ae..26461d50 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailConfigsService.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailConfigsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-MailConfigsServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-MailConfigsServiceInterface.html
index 2d71aefb..0503cead 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailConfigsServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailConfigsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-MailContentsService.html b/5/plugin/reference/classes/BcMail-Service-MailContentsService.html
index 120fcdab..70e8b844 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailContentsService.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailContentsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-MailContentsServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-MailContentsServiceInterface.html
index 36e28972..8d989aef 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailContentsServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailContentsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-MailFieldsService.html b/5/plugin/reference/classes/BcMail-Service-MailFieldsService.html
index 87b03d87..7e78d5de 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailFieldsService.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailFieldsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -996,7 +1000,7 @@
@@ -1080,7 +1084,7 @@
@@ -1171,7 +1175,7 @@
@@ -1251,7 +1255,7 @@
@@ -1324,7 +1328,7 @@
@@ -1481,7 +1485,7 @@
@@ -1621,7 +1625,7 @@
@@ -1694,7 +1698,7 @@
@@ -1844,7 +1848,7 @@
@@ -1998,7 +2002,7 @@
@@ -2071,7 +2075,7 @@
@@ -2144,7 +2148,7 @@
diff --git a/5/plugin/reference/classes/BcMail-Service-MailFieldsServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-MailFieldsServiceInterface.html
index 0fd32ef3..5a258cdf 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailFieldsServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailFieldsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-MailMessagesService.html b/5/plugin/reference/classes/BcMail-Service-MailMessagesService.html
index e0b3a84e..02fb4ed0 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailMessagesService.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailMessagesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-Service-MailMessagesServiceInterface.html b/5/plugin/reference/classes/BcMail-Service-MailMessagesServiceInterface.html
index 452fc1b7..f2ed7e48 100644
--- a/5/plugin/reference/classes/BcMail-Service-MailMessagesServiceInterface.html
+++ b/5/plugin/reference/classes/BcMail-Service-MailMessagesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-ServiceProvider-BcMailServiceProvider.html b/5/plugin/reference/classes/BcMail-ServiceProvider-BcMailServiceProvider.html
index 2d6feb83..3c50fca2 100644
--- a/5/plugin/reference/classes/BcMail-ServiceProvider-BcMailServiceProvider.html
+++ b/5/plugin/reference/classes/BcMail-ServiceProvider-BcMailServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -683,7 +687,7 @@
@@ -728,6 +732,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcMail-View-Cell-MailCell.html b/5/plugin/reference/classes/BcMail-View-Cell-MailCell.html
index 250ed1c5..4489a8c9 100644
--- a/5/plugin/reference/classes/BcMail-View-Cell-MailCell.html
+++ b/5/plugin/reference/classes/BcMail-View-Cell-MailCell.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcMail-View-Helper-BcMailBaserHelper.html b/5/plugin/reference/classes/BcMail-View-Helper-BcMailBaserHelper.html
index 406f2b7a..0b30158b 100644
--- a/5/plugin/reference/classes/BcMail-View-Helper-BcMailBaserHelper.html
+++ b/5/plugin/reference/classes/BcMail-View-Helper-BcMailBaserHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -696,7 +700,7 @@
@@ -731,6 +735,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcMail-View-Helper-MailHelper.html b/5/plugin/reference/classes/BcMail-View-Helper-MailHelper.html
index 7a1f5850..e31031d3 100644
--- a/5/plugin/reference/classes/BcMail-View-Helper-MailHelper.html
+++ b/5/plugin/reference/classes/BcMail-View-Helper-MailHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -757,7 +761,7 @@
@@ -794,7 +798,7 @@
@@ -836,7 +840,7 @@
@@ -909,7 +913,7 @@
@@ -975,7 +979,7 @@
@@ -1010,6 +1014,15 @@
+
+
+ unitTest
+
+
+
+
+
@@ -1031,7 +1044,7 @@
@@ -1066,6 +1079,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1095,7 +1115,7 @@
@@ -1130,6 +1150,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1159,7 +1186,7 @@
@@ -1204,7 +1231,7 @@
@@ -1289,7 +1316,7 @@
@@ -1374,7 +1401,7 @@
@@ -1517,7 +1544,7 @@
@@ -1654,7 +1681,7 @@
@@ -1714,7 +1741,7 @@
@@ -1810,7 +1837,7 @@
@@ -1857,7 +1884,7 @@
diff --git a/5/plugin/reference/classes/BcMail-View-Helper-MaildataHelper.html b/5/plugin/reference/classes/BcMail-View-Helper-MaildataHelper.html
index f80b4205..b8380c67 100644
--- a/5/plugin/reference/classes/BcMail-View-Helper-MaildataHelper.html
+++ b/5/plugin/reference/classes/BcMail-View-Helper-MaildataHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -940,7 +944,7 @@
@@ -999,6 +1003,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1020,7 +1031,7 @@
@@ -1083,6 +1094,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1104,7 +1122,7 @@
@@ -1170,6 +1188,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1195,7 +1220,7 @@
@@ -1243,6 +1268,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1272,7 +1304,7 @@
@@ -1307,6 +1339,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1336,7 +1375,7 @@
@@ -1392,6 +1431,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1417,7 +1463,7 @@
@@ -1464,6 +1510,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1493,7 +1546,7 @@
@@ -1538,6 +1591,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1567,7 +1627,7 @@
@@ -1602,6 +1662,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1631,7 +1698,7 @@
@@ -1676,6 +1743,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1705,7 +1779,7 @@
@@ -1740,6 +1814,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1769,7 +1850,7 @@
@@ -1814,6 +1895,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1843,7 +1931,7 @@
@@ -1878,6 +1966,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1907,7 +2002,7 @@
@@ -1973,6 +2068,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2002,7 +2104,7 @@
@@ -2058,6 +2160,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2178,7 +2287,7 @@
@@ -2243,6 +2352,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2272,7 +2388,7 @@
@@ -2357,7 +2473,7 @@
@@ -2413,6 +2529,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2438,7 +2561,7 @@
@@ -2492,6 +2615,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2521,7 +2651,7 @@
@@ -2577,6 +2707,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2606,7 +2743,7 @@
@@ -2651,6 +2788,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2680,7 +2824,7 @@
@@ -2725,6 +2869,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2750,7 +2901,7 @@
@@ -2842,7 +2993,7 @@
@@ -2898,6 +3049,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcMail-View-Helper-MailfieldHelper.html b/5/plugin/reference/classes/BcMail-View-Helper-MailfieldHelper.html
index fbf26470..9f12b677 100644
--- a/5/plugin/reference/classes/BcMail-View-Helper-MailfieldHelper.html
+++ b/5/plugin/reference/classes/BcMail-View-Helper-MailfieldHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -633,7 +637,7 @@
@@ -680,6 +684,13 @@
+
+
+ unitTest
+
+
+
+
@@ -709,7 +720,7 @@
@@ -756,6 +767,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcMail-View-Helper-MailformHelper.html b/5/plugin/reference/classes/BcMail-View-Helper-MailformHelper.html
index ae923322..efb56903 100644
--- a/5/plugin/reference/classes/BcMail-View-Helper-MailformHelper.html
+++ b/5/plugin/reference/classes/BcMail-View-Helper-MailformHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1331,7 +1335,7 @@
@@ -1387,6 +1391,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1749,7 +1760,7 @@
@@ -1806,6 +1817,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1835,7 +1853,7 @@
@@ -2273,7 +2291,7 @@
@@ -2329,6 +2347,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2452,7 +2477,7 @@
@@ -2529,7 +2554,7 @@
@@ -2564,6 +2589,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2585,7 +2617,7 @@
@@ -3013,7 +3045,7 @@
@@ -3259,7 +3291,7 @@
@@ -3435,7 +3467,7 @@
@@ -3491,6 +3523,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3520,7 +3559,7 @@
@@ -3579,6 +3618,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3608,7 +3654,7 @@
@@ -3711,7 +3757,7 @@
@@ -3776,6 +3822,13 @@
+
+
+ unitTest
+
+
+
+
@@ -3805,7 +3858,7 @@
@@ -3873,6 +3926,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4114,7 +4174,7 @@
@@ -4170,6 +4230,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4199,7 +4266,7 @@
@@ -4259,6 +4326,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4288,7 +4362,7 @@
@@ -4340,6 +4414,13 @@
+
+
+ unitTest
+
+
+
+
@@ -4369,7 +4450,7 @@
diff --git a/5/plugin/reference/classes/BcMail-View-MailAdminAppView.html b/5/plugin/reference/classes/BcMail-View-MailAdminAppView.html
index 6e2c4634..591cee41 100644
--- a/5/plugin/reference/classes/BcMail-View-MailAdminAppView.html
+++ b/5/plugin/reference/classes/BcMail-View-MailAdminAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1706,7 +1710,7 @@
@@ -1783,7 +1787,7 @@
@@ -1843,7 +1847,7 @@
@@ -1878,6 +1882,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1899,7 +1910,7 @@
@@ -1965,7 +1976,7 @@
@@ -2045,7 +2056,7 @@
diff --git a/5/plugin/reference/classes/BcMail-View-MailFrontAppView.html b/5/plugin/reference/classes/BcMail-View-MailFrontAppView.html
index b484d11f..20962b16 100644
--- a/5/plugin/reference/classes/BcMail-View-MailFrontAppView.html
+++ b/5/plugin/reference/classes/BcMail-View-MailFrontAppView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1286,7 +1290,7 @@
@@ -1363,7 +1367,7 @@
@@ -1423,7 +1427,7 @@
@@ -1458,6 +1462,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1479,7 +1490,7 @@
@@ -1545,7 +1556,7 @@
@@ -1625,7 +1636,7 @@
diff --git a/5/plugin/reference/classes/BcMail-View-MailFrontEmailView.html b/5/plugin/reference/classes/BcMail-View-MailFrontEmailView.html
index f684ddb8..58350578 100644
--- a/5/plugin/reference/classes/BcMail-View-MailFrontEmailView.html
+++ b/5/plugin/reference/classes/BcMail-View-MailFrontEmailView.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -809,7 +813,7 @@
@@ -844,6 +848,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcSearchIndex-BcSearchIndexPlugin.html b/5/plugin/reference/classes/BcSearchIndex-BcSearchIndexPlugin.html
index 945d9c0e..65fd4e25 100644
--- a/5/plugin/reference/classes/BcSearchIndex-BcSearchIndexPlugin.html
+++ b/5/plugin/reference/classes/BcSearchIndex-BcSearchIndexPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -610,18 +614,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -733,7 +725,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -955,78 +947,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1377,7 +1297,7 @@
@@ -2131,11 +2051,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2402,7 +2322,7 @@
@@ -2758,7 +2678,7 @@
@@ -2824,7 +2744,7 @@
@@ -2897,7 +2817,7 @@
@@ -3140,7 +3060,7 @@
@@ -3360,8 +3280,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcSearchIndex-Controller-Api-Admin-SearchIndexesController.html b/5/plugin/reference/classes/BcSearchIndex-Controller-Api-Admin-SearchIndexesController.html
index 9a0cefde..5fbe42f5 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Controller-Api-Admin-SearchIndexesController.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Controller-Api-Admin-SearchIndexesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -783,6 +775,13 @@
フロント用のViewクラスをセットアップする
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -946,78 +945,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1518,7 +1445,7 @@
@@ -1847,7 +1774,7 @@
@@ -2660,6 +2587,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3328,6 +3313,7 @@
Return values
redirectIfIsRequireMaintenance()
setTitle()
setupFrontView()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcSearchIndex-Controller-Api-SearchIndexesController.html b/5/plugin/reference/classes/BcSearchIndex-Controller-Api-SearchIndexesController.html
index 6c869680..09e77264 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Controller-Api-SearchIndexesController.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Controller-Api-SearchIndexesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -741,6 +733,13 @@
フロント用のViewクラスをセットアップする
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -904,78 +903,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1403,7 +1330,7 @@
@@ -1572,7 +1499,7 @@
@@ -1895,7 +1822,7 @@
@@ -2219,6 +2146,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -2881,6 +2866,7 @@
Return values
redirectIfIsRequireMaintenance()
setTitle()
setupFrontView()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcSearchIndex-Controller-SearchIndexesController.html b/5/plugin/reference/classes/BcSearchIndex-Controller-SearchIndexesController.html
index 3d6b4039..95e49d3d 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Controller-SearchIndexesController.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Controller-SearchIndexesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -601,18 +605,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -853,78 +845,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2705,8 +2625,6 @@ Return values
diff --git a/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesFrontForm.html b/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesFrontForm.html
index ec4c25e7..66920832 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesFrontForm.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesFrontForm.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesSearchForm.html b/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesSearchForm.html
index 3fe8ecba..a0d100eb 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesSearchForm.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Form-SearchIndexesSearchForm.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -625,7 +629,7 @@
@@ -670,6 +674,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcSearchIndex-Model-Behavior-BcSearchIndexManagerBehavior.html b/5/plugin/reference/classes/BcSearchIndex-Model-Behavior-BcSearchIndexManagerBehavior.html
index ecb61915..7e62e125 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Model-Behavior-BcSearchIndexManagerBehavior.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Model-Behavior-BcSearchIndexManagerBehavior.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1092,7 +1096,7 @@
@@ -1528,7 +1532,7 @@
diff --git a/5/plugin/reference/classes/BcSearchIndex-Model-Entity-SearchIndex.html b/5/plugin/reference/classes/BcSearchIndex-Model-Entity-SearchIndex.html
index 7b3e7015..8372f935 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Model-Entity-SearchIndex.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Model-Entity-SearchIndex.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -605,7 +609,7 @@
$created
- : Time
+ : DateTime
@@ -641,7 +645,7 @@
$modified
- : Time
+ : DateTime
@@ -653,13 +657,13 @@
$publish_begin
- : Time
+ : DateTime
$publish_end
- : Time
+ : DateTime
@@ -816,7 +820,7 @@
public
- Time
+ DateTime
$created
@@ -1032,7 +1036,7 @@
public
- Time
+ DateTime
$modified
@@ -1104,7 +1108,7 @@
public
- Time
+ DateTime
$publish_begin
@@ -1140,7 +1144,7 @@
public
- Time
+ DateTime
$publish_end
diff --git a/5/plugin/reference/classes/BcSearchIndex-Model-Table-SearchIndexesTable.html b/5/plugin/reference/classes/BcSearchIndex-Model-Table-SearchIndexesTable.html
index abd6ddb2..6dcfb6bd 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Model-Table-SearchIndexesTable.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Model-Table-SearchIndexesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -981,7 +985,7 @@
@@ -1214,7 +1218,7 @@
@@ -1402,7 +1406,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1420,13 +1424,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1479,7 +1481,7 @@
@@ -1550,7 +1552,7 @@
@@ -1698,7 +1700,7 @@
@@ -1850,7 +1852,7 @@
@@ -1916,7 +1918,7 @@
@@ -1990,7 +1992,7 @@
@@ -2040,6 +2042,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2141,7 +2150,7 @@
@@ -2218,7 +2227,7 @@
diff --git a/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminService.html b/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminService.html
index 70d601a4..d6e04517 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminService.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -562,7 +566,7 @@
@@ -1452,7 +1456,7 @@
diff --git a/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminServiceInterface.html b/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminServiceInterface.html
index cbbe8610..505ce6ff 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Service-Admin-SearchIndexesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontService.html b/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontService.html
index eca5c4b4..dd3f120d 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontService.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -1449,7 +1453,7 @@
diff --git a/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontServiceInterface.html b/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontServiceInterface.html
index f1e52a1a..d67013ff 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontServiceInterface.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Service-Front-SearchIndexesFrontServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesService.html b/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesService.html
index 3b5940e2..5dad6d1d 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesService.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesServiceInterface.html b/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesServiceInterface.html
index b649970c..310d8d5f 100644
--- a/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesServiceInterface.html
+++ b/5/plugin/reference/classes/BcSearchIndex-Service-SearchIndexesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcSearchIndex-ServiceProvider-BcSearchIndexServiceProvider.html b/5/plugin/reference/classes/BcSearchIndex-ServiceProvider-BcSearchIndexServiceProvider.html
index 1b5fbef2..03eb1658 100644
--- a/5/plugin/reference/classes/BcSearchIndex-ServiceProvider-BcSearchIndexServiceProvider.html
+++ b/5/plugin/reference/classes/BcSearchIndex-ServiceProvider-BcSearchIndexServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcSearchIndex-View-Helper-BcSearchIndexHelper.html b/5/plugin/reference/classes/BcSearchIndex-View-Helper-BcSearchIndexHelper.html
index 0940d46a..3373e7d6 100644
--- a/5/plugin/reference/classes/BcSearchIndex-View-Helper-BcSearchIndexHelper.html
+++ b/5/plugin/reference/classes/BcSearchIndex-View-Helper-BcSearchIndexHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeConfig-BcThemeConfigPlugin.html b/5/plugin/reference/classes/BcThemeConfig-BcThemeConfigPlugin.html
index 003dffd3..29f6e225 100644
--- a/5/plugin/reference/classes/BcThemeConfig-BcThemeConfigPlugin.html
+++ b/5/plugin/reference/classes/BcThemeConfig-BcThemeConfigPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -885,7 +889,7 @@
@@ -1031,7 +1035,7 @@
@@ -1066,7 +1070,7 @@
@@ -1345,7 +1349,7 @@
Model
+
+
+ ORM
+
Routing
@@ -610,18 +614,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -719,7 +711,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -941,78 +933,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1363,7 +1283,7 @@
@@ -1433,7 +1353,7 @@
@@ -1964,11 +1884,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2235,7 +2155,7 @@
@@ -2591,7 +2511,7 @@
@@ -2657,7 +2577,7 @@
@@ -2730,7 +2650,7 @@
@@ -2973,7 +2893,7 @@
@@ -3193,8 +3113,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcThemeConfig-Controller-Api-Admin-ThemeConfigsController.html b/5/plugin/reference/classes/BcThemeConfig-Controller-Api-Admin-ThemeConfigsController.html
index ca87ee1d..91ead24b 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Controller-Api-Admin-ThemeConfigsController.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Controller-Api-Admin-ThemeConfigsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -611,18 +615,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -765,6 +757,13 @@
[API] 取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -928,78 +927,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1435,7 +1362,7 @@
@@ -1677,7 +1604,7 @@
@@ -2434,6 +2361,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3099,6 +3084,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcThemeConfig-Event-BcThemeConfigControllerEventListener.html b/5/plugin/reference/classes/BcThemeConfig-Event-BcThemeConfigControllerEventListener.html
index 72476941..e380658e 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Event-BcThemeConfigControllerEventListener.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Event-BcThemeConfigControllerEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeConfig-Model-Entity-ThemeConfig.html b/5/plugin/reference/classes/BcThemeConfig-Model-Entity-ThemeConfig.html
index b66a0f36..c0dbacb1 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Model-Entity-ThemeConfig.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Model-Entity-ThemeConfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeConfig-Model-Table-ThemeConfigsTable.html b/5/plugin/reference/classes/BcThemeConfig-Model-Table-ThemeConfigsTable.html
index 29af9504..b25d6e40 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Model-Table-ThemeConfigsTable.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Model-Table-ThemeConfigsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -990,7 +994,7 @@
@@ -1146,7 +1150,7 @@
@@ -1334,7 +1338,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1352,13 +1356,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1411,7 +1413,7 @@
@@ -1482,7 +1484,7 @@
@@ -1630,7 +1632,7 @@
@@ -1782,7 +1784,7 @@
@@ -1848,7 +1850,7 @@
@@ -1922,7 +1924,7 @@
@@ -1972,6 +1974,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2073,7 +2082,7 @@
@@ -2150,7 +2159,7 @@
diff --git a/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminService.html b/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminService.html
index 0d6b909e..438bf9cf 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminService.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminServiceInterface.html b/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminServiceInterface.html
index db60044f..e21a938b 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Service-Admin-ThemeConfigsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsService.html b/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsService.html
index e3d87c1f..097e928e 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsService.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -902,7 +906,7 @@
@@ -1200,7 +1204,7 @@
diff --git a/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsServiceInterface.html b/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsServiceInterface.html
index d48426e4..60c73410 100644
--- a/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsServiceInterface.html
+++ b/5/plugin/reference/classes/BcThemeConfig-Service-ThemeConfigsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeConfig-ServiceProvider-BcThemeConfigServiceProvider.html b/5/plugin/reference/classes/BcThemeConfig-ServiceProvider-BcThemeConfigServiceProvider.html
index cbcd8be6..125a5626 100644
--- a/5/plugin/reference/classes/BcThemeConfig-ServiceProvider-BcThemeConfigServiceProvider.html
+++ b/5/plugin/reference/classes/BcThemeConfig-ServiceProvider-BcThemeConfigServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigBaserHelper.html b/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigBaserHelper.html
index d70dbae9..70af8bfd 100644
--- a/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigBaserHelper.html
+++ b/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigBaserHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -694,7 +698,7 @@
@@ -729,6 +733,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigHelper.html b/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigHelper.html
index 5e33ccb9..b738fec7 100644
--- a/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigHelper.html
+++ b/5/plugin/reference/classes/BcThemeConfig-View-Helper-BcThemeConfigHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-BcThemeFilePlugin.html b/5/plugin/reference/classes/BcThemeFile-BcThemeFilePlugin.html
index c17ee5fd..03e9f870 100644
--- a/5/plugin/reference/classes/BcThemeFile-BcThemeFilePlugin.html
+++ b/5/plugin/reference/classes/BcThemeFile-BcThemeFilePlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -556,7 +560,7 @@
@@ -610,18 +614,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -654,7 +646,7 @@
add()
- : void
+ : void|Response
テーマファイル作成
@@ -805,7 +797,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -1062,78 +1054,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1400,7 +1320,7 @@
@@ -1408,7 +1328,7 @@
public
- add ( ThemeFilesAdminServiceInterface $service ) : void
+ add ( ThemeFilesAdminServiceInterface $service ) : void|Response
@@ -1457,7 +1377,11 @@
-
+
+ Return values
+ void|Response
+
+
@@ -1634,7 +1558,7 @@
@@ -1704,7 +1628,7 @@
@@ -1781,7 +1705,7 @@
@@ -1854,7 +1778,7 @@
@@ -1927,7 +1851,7 @@
@@ -2000,7 +1924,7 @@
@@ -2073,7 +1997,7 @@
@@ -2146,7 +2070,7 @@
@@ -2310,7 +2234,7 @@
@@ -2383,7 +2307,7 @@
@@ -2610,7 +2534,7 @@
@@ -2684,7 +2608,7 @@
@@ -2758,7 +2682,7 @@
@@ -2967,11 +2891,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -3238,7 +3162,7 @@
@@ -3311,7 +3235,7 @@
@@ -3384,7 +3308,7 @@
@@ -3457,7 +3381,7 @@
@@ -3524,7 +3448,7 @@
@@ -3695,7 +3619,7 @@
@@ -3957,7 +3881,7 @@
@@ -4023,7 +3947,7 @@
@@ -4096,7 +4020,7 @@
@@ -4339,7 +4263,7 @@
@@ -4559,8 +4483,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFilesController.html b/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFilesController.html
index f2c06156..d8e6f6b6 100644
--- a/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFilesController.html
+++ b/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFilesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -615,18 +619,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -818,6 +810,13 @@
[API] テーマファイル ファイルを表示
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -1017,78 +1016,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1597,7 +1524,7 @@
@@ -2058,7 +1985,7 @@
@@ -3034,6 +2961,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$BcBaser
$BcMessage
- $Paginator
- $Security
$_View
@@ -3707,6 +3692,7 @@
Return values
setupFrontView()
upload()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFoldersController.html b/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFoldersController.html
index 18882c1c..54af7ebb 100644
--- a/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFoldersController.html
+++ b/5/plugin/reference/classes/BcThemeFile-Controller-Api-Admin-ThemeFoldersController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -805,6 +797,13 @@
テーマフォルダAPI フォルダを表示
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -968,78 +967,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1625,7 +1552,7 @@
@@ -2086,7 +2013,7 @@
@@ -2916,6 +2843,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3587,6 +3572,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcThemeFile-Form-ThemeFileForm.html b/5/plugin/reference/classes/BcThemeFile-Form-ThemeFileForm.html
index 66f3f2c6..0e1d42bb 100644
--- a/5/plugin/reference/classes/BcThemeFile-Form-ThemeFileForm.html
+++ b/5/plugin/reference/classes/BcThemeFile-Form-ThemeFileForm.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -646,7 +650,7 @@
@@ -730,7 +734,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Form-ThemeFolderForm.html b/5/plugin/reference/classes/BcThemeFile-Form-ThemeFolderForm.html
index 1943ad43..ada11805 100644
--- a/5/plugin/reference/classes/BcThemeFile-Form-ThemeFolderForm.html
+++ b/5/plugin/reference/classes/BcThemeFile-Form-ThemeFolderForm.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -646,7 +650,7 @@
@@ -723,7 +727,7 @@
@@ -793,7 +797,7 @@
@@ -838,6 +842,13 @@
+
+
+ unitTest
+
+
+
+
@@ -863,7 +874,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFile.html b/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFile.html
index 735c845f..389f980d 100644
--- a/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFile.html
+++ b/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFile.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFolder.html b/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFolder.html
index 2496c804..5d8484f0 100644
--- a/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFolder.html
+++ b/5/plugin/reference/classes/BcThemeFile-Model-Entity-ThemeFolder.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFilesTable.html b/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFilesTable.html
index 57936a72..c49fa860 100644
--- a/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFilesTable.html
+++ b/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFilesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -974,7 +978,7 @@
@@ -1130,7 +1134,7 @@
@@ -1318,7 +1322,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1336,13 +1340,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1395,7 +1397,7 @@
@@ -1466,7 +1468,7 @@
@@ -1614,7 +1616,7 @@
@@ -1691,7 +1693,7 @@
@@ -1766,7 +1768,7 @@
@@ -1832,7 +1834,7 @@
@@ -1906,7 +1908,7 @@
@@ -1956,6 +1958,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2057,7 +2066,7 @@
@@ -2134,7 +2143,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFoldersTable.html b/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFoldersTable.html
index e4c020c1..55915c45 100644
--- a/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFoldersTable.html
+++ b/5/plugin/reference/classes/BcThemeFile-Model-Table-ThemeFoldersTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -974,7 +978,7 @@
@@ -1130,7 +1134,7 @@
@@ -1318,7 +1322,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1336,13 +1340,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1395,7 +1397,7 @@
@@ -1466,7 +1468,7 @@
@@ -1614,7 +1616,7 @@
@@ -1691,7 +1693,7 @@
@@ -1766,7 +1768,7 @@
@@ -1832,7 +1834,7 @@
@@ -1906,7 +1908,7 @@
@@ -1956,6 +1958,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2057,7 +2066,7 @@
@@ -2134,7 +2143,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminService.html b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminService.html
index 6e4f0c19..b8cad83e 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminService.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1065,7 +1069,7 @@
@@ -1548,7 +1552,7 @@
@@ -1625,7 +1629,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminServiceInterface.html b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminServiceInterface.html
index 209735df..e5befcef 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFilesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminService.html b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminService.html
index 7d760a55..b8f8f063 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminService.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -755,7 +759,7 @@
@@ -839,7 +843,7 @@
@@ -916,7 +920,7 @@
@@ -993,7 +997,7 @@
@@ -1070,7 +1074,7 @@
@@ -1224,7 +1228,7 @@
@@ -1476,7 +1480,7 @@
@@ -2136,7 +2140,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminServiceInterface.html b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminServiceInterface.html
index d4489145..236a003a 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-Admin-ThemeFoldersAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileService.html b/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileService.html
index 00eb1cab..f71611ce 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileService.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileServiceInterface.html b/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileServiceInterface.html
index f10e2dda..1e70e8d5 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileServiceInterface.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-BcThemeFileServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesService.html b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesService.html
index 05c6aaa8..acbad720 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesService.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -959,7 +963,7 @@
@@ -1442,7 +1446,7 @@
@@ -1519,7 +1523,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesServiceInterface.html b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesServiceInterface.html
index d935282d..651f3738 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesServiceInterface.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFilesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersService.html b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersService.html
index 2eb97fe5..b981501d 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersService.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -729,7 +733,7 @@
@@ -813,7 +817,7 @@
@@ -890,7 +894,7 @@
@@ -967,7 +971,7 @@
@@ -1044,7 +1048,7 @@
@@ -1198,7 +1202,7 @@
@@ -1450,7 +1454,7 @@
@@ -1758,7 +1762,7 @@
diff --git a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersServiceInterface.html b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersServiceInterface.html
index 2fda3f96..d2f10067 100644
--- a/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersServiceInterface.html
+++ b/5/plugin/reference/classes/BcThemeFile-Service-ThemeFoldersServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-ServiceProvider-BcThemeFileServiceProvider.html b/5/plugin/reference/classes/BcThemeFile-ServiceProvider-BcThemeFileServiceProvider.html
index 88f506b5..4b821afd 100644
--- a/5/plugin/reference/classes/BcThemeFile-ServiceProvider-BcThemeFileServiceProvider.html
+++ b/5/plugin/reference/classes/BcThemeFile-ServiceProvider-BcThemeFileServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcThemeFile-Utility-BcThemeFileUtil.html b/5/plugin/reference/classes/BcThemeFile-Utility-BcThemeFileUtil.html
index f6a7efbe..6d402d01 100644
--- a/5/plugin/reference/classes/BcThemeFile-Utility-BcThemeFileUtil.html
+++ b/5/plugin/reference/classes/BcThemeFile-Utility-BcThemeFileUtil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-BcUploaderPlugin.html b/5/plugin/reference/classes/BcUploader-BcUploaderPlugin.html
index e80d5eb1..73d3be4e 100644
--- a/5/plugin/reference/classes/BcUploader-BcUploaderPlugin.html
+++ b/5/plugin/reference/classes/BcUploader-BcUploaderPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -745,7 +737,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -967,78 +959,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1305,7 +1225,7 @@
@@ -1462,7 +1382,7 @@
@@ -1532,7 +1452,7 @@
@@ -1609,7 +1529,7 @@
@@ -1661,6 +1581,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1682,7 +1609,7 @@
@@ -1734,6 +1661,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1846,7 +1780,7 @@
@@ -1898,6 +1832,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2073,7 +2014,7 @@
@@ -2118,6 +2059,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2275,11 +2223,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2546,7 +2494,7 @@
@@ -2902,7 +2850,7 @@
@@ -2968,7 +2916,7 @@
@@ -3041,7 +2989,7 @@
@@ -3284,7 +3232,7 @@
@@ -3504,8 +3452,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderConfigsController.html b/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderConfigsController.html
index 66da9f98..29b421f0 100644
--- a/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderConfigsController.html
+++ b/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderConfigsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -717,7 +709,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -939,78 +931,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1361,7 +1281,7 @@
@@ -1431,7 +1351,7 @@
@@ -1753,7 +1673,7 @@
@@ -1798,6 +1718,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1955,11 +1882,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2226,7 +2153,7 @@
@@ -2582,7 +2509,7 @@
@@ -2648,7 +2575,7 @@
@@ -2721,7 +2648,7 @@
@@ -2964,7 +2891,7 @@
@@ -3184,8 +3111,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderFilesController.html b/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderFilesController.html
index ea65bbb6..37aaf591 100644
--- a/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderFilesController.html
+++ b/5/plugin/reference/classes/BcUploader-Controller-Admin-UploaderFilesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -608,18 +612,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -759,7 +751,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -981,78 +973,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1319,7 +1239,7 @@
@@ -1385,7 +1305,7 @@
@@ -1465,7 +1385,7 @@
@@ -1538,7 +1458,7 @@
@@ -1701,7 +1621,7 @@
@@ -1746,6 +1666,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1771,7 +1698,7 @@
@@ -1848,7 +1775,7 @@
@@ -1900,6 +1827,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2012,7 +1946,7 @@
@@ -2064,6 +1998,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2243,7 +2184,7 @@
@@ -2445,11 +2386,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2716,7 +2657,7 @@
@@ -3072,7 +3013,7 @@
@@ -3138,7 +3079,7 @@
@@ -3211,7 +3152,7 @@
@@ -3454,7 +3395,7 @@
@@ -3674,8 +3615,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderCategoriesController.html b/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderCategoriesController.html
index 82253efd..711d8007 100644
--- a/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderCategoriesController.html
+++ b/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderCategoriesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -791,6 +783,13 @@
フロント用のViewクラスをセットアップする
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -954,78 +953,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1611,7 +1538,7 @@
@@ -2020,7 +1947,7 @@
@@ -2777,6 +2704,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3446,6 +3431,7 @@
Return values
redirectIfIsRequireMaintenance()
setTitle()
setupFrontView()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderConfigsController.html b/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderConfigsController.html
index 51534557..7069d4e0 100644
--- a/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderConfigsController.html
+++ b/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderConfigsController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -763,6 +755,13 @@
取得API
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -926,78 +925,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1433,7 +1360,7 @@
@@ -1675,7 +1602,7 @@
@@ -2432,6 +2359,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3097,6 +3082,7 @@
Return values
setTitle()
setupFrontView()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderFilesController.html b/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderFilesController.html
index 3dd72582..9579afb6 100644
--- a/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderFilesController.html
+++ b/5/plugin/reference/classes/BcUploader-Controller-Api-Admin-UploaderFilesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -609,18 +613,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -784,6 +776,13 @@
[ADMIN] Ajaxファイルアップロード
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -947,78 +946,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1454,7 +1381,7 @@
@@ -1835,7 +1762,7 @@
@@ -2658,6 +2585,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3326,6 +3311,7 @@
Return values
setTitle()
setupFrontView()
upload()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcUploader-Controller-UploaderFilesController.html b/5/plugin/reference/classes/BcUploader-Controller-UploaderFilesController.html
index 1e744acc..dcb96ce6 100644
--- a/5/plugin/reference/classes/BcUploader-Controller-UploaderFilesController.html
+++ b/5/plugin/reference/classes/BcUploader-Controller-UploaderFilesController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -601,18 +605,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -853,78 +845,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -2685,8 +2605,6 @@ Return values
diff --git a/5/plugin/reference/classes/BcUploader-Event-BcUploaderViewEventListener.html b/5/plugin/reference/classes/BcUploader-Event-BcUploaderViewEventListener.html
index d35b0118..f201bce3 100644
--- a/5/plugin/reference/classes/BcUploader-Event-BcUploaderViewEventListener.html
+++ b/5/plugin/reference/classes/BcUploader-Event-BcUploaderViewEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -595,13 +599,6 @@
: BcHtmlHelper
-
- $BcHtml
-
- : BcHtmlHelper
-
-BcHtmlHelper
-
$events
@@ -673,6 +670,12 @@
CKEditorのアップローダーを組み込む為のJavascriptを返す
+
+ setUploader()
+
+ : string
+
+
@@ -721,43 +724,6 @@
-
-
-
- $BcHtml
-
-
-
-
-
-
-
- BcHtmlHelper
-
-
-
- public
- BcHtmlHelper
- $BcHtml
-
-
-
-
-
-
-
-
@@ -1230,7 +1196,7 @@
@@ -1238,7 +1204,7 @@
private
- __getCkeditorUploaderScript ( mixed $id ) : string
+ __getCkeditorUploaderScript ( BcHtmlHelper $bcHtmlHelper , string $id ) : string
@@ -1252,8 +1218,15 @@
Parameters
+ $bcHtmlHelper
+ : BcHtmlHelper
+
+
+
+
+
$id
- : mixed
+ : string
@@ -1285,6 +1258,68 @@
+
+ Return values
+ string
+
+
+
+
+
+ setUploader()
+
+
+
+
+
+
+
+ private
+ setUploader ( BcHtmlHelper $bcHtmlHelper , string $content , string $base ) : string
+
+
+
+
+
+ Parameters
+
+
+ $bcHtmlHelper
+ : BcHtmlHelper
+
+
+
+
+
+ $content
+ : string
+
+
+
+
+
+ $base
+ : string
+
+
+
+
+
+
+
+
+
+
Return values
string
@@ -1404,7 +1439,6 @@ Return values
Properties
diff --git a/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderCategory.html b/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderCategory.html
index 645bf684..61871d32 100644
--- a/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderCategory.html
+++ b/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderCategory.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -605,7 +609,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -660,7 +664,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -732,7 +736,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderConfig.html b/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderConfig.html
index 2336baaa..8ed71b57 100644
--- a/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderConfig.html
+++ b/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderConfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -605,7 +609,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -666,7 +670,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -738,7 +742,7 @@
public
- FrozenTime
+ DateTime
$modified
diff --git a/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderFile.html b/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderFile.html
index cf4214f7..d8dd90a8 100644
--- a/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderFile.html
+++ b/5/plugin/reference/classes/BcUploader-Model-Entity-UploaderFile.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -599,7 +603,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -611,7 +615,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -623,13 +627,13 @@
$publish_begin
- : FrozenTime
+ : DateTime
$publish_end
- : FrozenTime
+ : DateTime
@@ -782,7 +786,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -854,7 +858,7 @@
public
- FrozenTime
+ DateTime
$modified
@@ -926,7 +930,7 @@
public
- FrozenTime
+ DateTime
$publish_begin
@@ -962,7 +966,7 @@
public
- FrozenTime
+ DateTime
$publish_end
@@ -1104,7 +1108,7 @@
@@ -1234,7 +1238,7 @@
@@ -1269,6 +1273,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1474,7 +1485,7 @@
@@ -1519,6 +1530,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcUploader-Model-Table-UploaderCategoriesTable.html b/5/plugin/reference/classes/BcUploader-Model-Table-UploaderCategoriesTable.html
index b7c0fe72..0c3f288a 100644
--- a/5/plugin/reference/classes/BcUploader-Model-Table-UploaderCategoriesTable.html
+++ b/5/plugin/reference/classes/BcUploader-Model-Table-UploaderCategoriesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -988,7 +992,7 @@
@@ -1144,7 +1148,7 @@
@@ -1416,7 +1420,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1434,13 +1438,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1493,7 +1495,7 @@
@@ -1564,7 +1566,7 @@
@@ -1712,7 +1714,7 @@
@@ -1864,7 +1866,7 @@
@@ -1930,7 +1932,7 @@
@@ -2004,7 +2006,7 @@
@@ -2054,6 +2056,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2155,7 +2164,7 @@
@@ -2232,7 +2241,7 @@
diff --git a/5/plugin/reference/classes/BcUploader-Model-Table-UploaderConfigsTable.html b/5/plugin/reference/classes/BcUploader-Model-Table-UploaderConfigsTable.html
index 6093d98b..2ac2fbc3 100644
--- a/5/plugin/reference/classes/BcUploader-Model-Table-UploaderConfigsTable.html
+++ b/5/plugin/reference/classes/BcUploader-Model-Table-UploaderConfigsTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -981,7 +985,7 @@
@@ -1137,7 +1141,7 @@
@@ -1325,7 +1329,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1343,13 +1347,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1402,7 +1404,7 @@
@@ -1473,7 +1475,7 @@
@@ -1621,7 +1623,7 @@
@@ -1773,7 +1775,7 @@
@@ -1839,7 +1841,7 @@
@@ -1913,7 +1915,7 @@
@@ -1963,6 +1965,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2064,7 +2073,7 @@
@@ -2141,7 +2150,7 @@
diff --git a/5/plugin/reference/classes/BcUploader-Model-Table-UploaderFilesTable.html b/5/plugin/reference/classes/BcUploader-Model-Table-UploaderFilesTable.html
index 5e83dfec..05dd3d55 100644
--- a/5/plugin/reference/classes/BcUploader-Model-Table-UploaderFilesTable.html
+++ b/5/plugin/reference/classes/BcUploader-Model-Table-UploaderFilesTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -1033,7 +1037,7 @@
@@ -1110,7 +1114,7 @@
@@ -1118,7 +1122,7 @@
public
- beforeDelete ( Event $event ) : mixed
+ beforeDelete ( Event $event , EntityInterface $entity , ArrayObject $options ) : mixed
@@ -1132,6 +1136,20 @@ Parameters
+
+
+ $entity
+ : EntityInterface
+
+
+
+
+
+ $options
+ : ArrayObject
+
+
+
@@ -1176,7 +1194,7 @@
@@ -1339,7 +1357,7 @@
@@ -1428,7 +1446,7 @@
@@ -1480,6 +1498,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1604,7 +1629,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1622,13 +1647,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1681,7 +1704,7 @@
@@ -1752,7 +1775,7 @@
@@ -1915,7 +1938,7 @@
@@ -1960,6 +1983,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2043,7 +2073,7 @@
@@ -2272,7 +2302,7 @@
@@ -2338,7 +2368,7 @@
@@ -2412,7 +2442,7 @@
@@ -2462,6 +2492,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2612,7 +2649,7 @@
@@ -2689,7 +2726,7 @@
@@ -2766,7 +2803,7 @@
diff --git a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminService.html b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminService.html
index ed45f2bd..2f809d25 100644
--- a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminService.html
+++ b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminServiceInterface.html b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminServiceInterface.html
index 996c2e0d..7b99820a 100644
--- a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderConfigsAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminService.html b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminService.html
index f1ff995e..f5d1cc54 100644
--- a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminService.html
+++ b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,7 +563,7 @@
@@ -957,7 +961,7 @@
@@ -1002,13 +1006,6 @@
-
-
- unitTest
-
-
-
-
@@ -1111,7 +1108,7 @@
@@ -1404,7 +1401,7 @@
@@ -1632,7 +1629,7 @@
@@ -1716,7 +1713,7 @@
@@ -1870,7 +1867,7 @@
@@ -1940,7 +1937,7 @@
@@ -2024,7 +2021,7 @@
diff --git a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminServiceInterface.html b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminServiceInterface.html
index 2fe8dcc2..e022c9c8 100644
--- a/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcUploader-Service-Admin-UploaderFilesAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesService.html b/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesService.html
index e57d0f12..ad0cc62d 100644
--- a/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesService.html
+++ b/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -865,7 +869,7 @@
@@ -945,7 +949,7 @@
@@ -1018,7 +1022,7 @@
@@ -1091,7 +1095,7 @@
@@ -1310,7 +1314,7 @@
@@ -1373,7 +1377,7 @@
@@ -1436,7 +1440,7 @@
@@ -1513,7 +1517,7 @@
diff --git a/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesServiceInterface.html b/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesServiceInterface.html
index a9c0d872..f9e54436 100644
--- a/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesServiceInterface.html
+++ b/5/plugin/reference/classes/BcUploader-Service-UploaderCategoriesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsService.html b/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsService.html
index 4df3055f..09434f99 100644
--- a/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsService.html
+++ b/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsServiceInterface.html b/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsServiceInterface.html
index 1b1a3988..46ab9109 100644
--- a/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsServiceInterface.html
+++ b/5/plugin/reference/classes/BcUploader-Service-UploaderConfigsServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-Service-UploaderFilesService.html b/5/plugin/reference/classes/BcUploader-Service-UploaderFilesService.html
index 30c880c7..a7c4e75f 100644
--- a/5/plugin/reference/classes/BcUploader-Service-UploaderFilesService.html
+++ b/5/plugin/reference/classes/BcUploader-Service-UploaderFilesService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -884,7 +888,7 @@
@@ -929,13 +933,6 @@
-
-
- unitTest
-
-
-
-
@@ -1038,7 +1035,7 @@
@@ -1331,7 +1328,7 @@
@@ -1552,7 +1549,7 @@
@@ -1622,7 +1619,7 @@
diff --git a/5/plugin/reference/classes/BcUploader-Service-UploaderFilesServiceInterface.html b/5/plugin/reference/classes/BcUploader-Service-UploaderFilesServiceInterface.html
index 277039ba..66dfaf30 100644
--- a/5/plugin/reference/classes/BcUploader-Service-UploaderFilesServiceInterface.html
+++ b/5/plugin/reference/classes/BcUploader-Service-UploaderFilesServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcUploader-ServiceProvider-BcUploaderServiceProvider.html b/5/plugin/reference/classes/BcUploader-ServiceProvider-BcUploaderServiceProvider.html
index 352f770e..c8b224eb 100644
--- a/5/plugin/reference/classes/BcUploader-ServiceProvider-BcUploaderServiceProvider.html
+++ b/5/plugin/reference/classes/BcUploader-ServiceProvider-BcUploaderServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -683,7 +687,7 @@
@@ -728,6 +732,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcUploader-View-Helper-UploaderHelper.html b/5/plugin/reference/classes/BcUploader-View-Helper-UploaderHelper.html
index adc9e45a..9a1b33dc 100644
--- a/5/plugin/reference/classes/BcUploader-View-Helper-UploaderHelper.html
+++ b/5/plugin/reference/classes/BcUploader-View-Helper-UploaderHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -807,7 +811,7 @@
@@ -859,6 +863,13 @@
+
+
+ unitTest
+
+
+
+
@@ -880,7 +891,7 @@
@@ -932,6 +943,13 @@
+
+
+ unitTest
+
+
+
+
@@ -957,7 +975,7 @@
@@ -1009,6 +1027,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1038,7 +1063,7 @@
@@ -1083,6 +1108,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1108,7 +1140,7 @@
@@ -1146,6 +1178,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1171,7 +1210,7 @@
diff --git a/5/plugin/reference/classes/BcWidgetArea-BcWidgetAreaPlugin.html b/5/plugin/reference/classes/BcWidgetArea-BcWidgetAreaPlugin.html
index 65907c81..0ed30531 100644
--- a/5/plugin/reference/classes/BcWidgetArea-BcWidgetAreaPlugin.html
+++ b/5/plugin/reference/classes/BcWidgetArea-BcWidgetAreaPlugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -878,7 +882,7 @@
@@ -1024,7 +1028,7 @@
@@ -1059,7 +1063,7 @@
@@ -1338,7 +1342,7 @@
Model
+
+
+ ORM
+
Routing
@@ -610,18 +614,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -740,7 +732,7 @@
: Response |void|null
-siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -962,78 +954,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1300,7 +1220,7 @@
@@ -1345,6 +1265,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1454,7 +1381,7 @@
@@ -1524,7 +1451,7 @@
@@ -1601,7 +1528,7 @@
@@ -1653,6 +1580,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1769,7 +1703,7 @@
@@ -1821,6 +1755,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1996,7 +1937,7 @@
@@ -2041,6 +1982,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2198,11 +2146,11 @@
- siteUrlや、sslUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
+
siteUrlや、cmsUrlと現在のURLが違う場合には、そちらのURLにリダイレクトを行う
setting.php にて、cmsUrlとして、cmsUrlを定義した場合にはそちらを優先する
@@ -2469,7 +2417,7 @@
@@ -2825,7 +2773,7 @@
@@ -2891,7 +2839,7 @@
@@ -2964,7 +2912,7 @@
@@ -3207,7 +3155,7 @@
@@ -3427,8 +3375,6 @@ Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
diff --git a/5/plugin/reference/classes/BcWidgetArea-Controller-Api-Admin-WidgetAreasController.html b/5/plugin/reference/classes/BcWidgetArea-Controller-Api-Admin-WidgetAreasController.html
index 02ff7494..ed0bd56a 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Controller-Api-Admin-WidgetAreasController.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Controller-Api-Admin-WidgetAreasController.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -611,18 +615,6 @@
: BcMessageComponent
-
- $Paginator
-
- : PaginatorComponent
-
-
-
- $Security
-
- : SecurityComponent
-
-
$_View
@@ -828,6 +820,13 @@
[API] 単一データ取得
+
+ viewClasses()
+
+ : array<string|int, string>
+
+View classes
+
loadViewConditions()
@@ -991,78 +990,6 @@
-
-
-
- $Paginator
-
-
-
-
-
-
-
-
-
-
- public
- PaginatorComponent
- $Paginator
-
-
-
-
-
-
-
-
-
-
-
- $Security
-
-
-
-
-
-
-
-
-
-
- public
- SecurityComponent
- $Security
-
-
-
-
-
-
-
-
@@ -1648,7 +1575,7 @@
@@ -2064,7 +1991,7 @@
@@ -3214,6 +3141,66 @@
+
+
+
+ viewClasses()
+
+
+
+
+
+ View classes
+
+
+ public
+ viewClasses ( ) : array<string|int, string>
+
+
+
+
+
+
+
+
+ Tags
+
+
+
+
+
+ checked
+
+
+
+
+
+
+ noTodo
+
+
+
+
+
+
+
+
+
+
+ Return values
+ array<string|int, string>
+
+
Return values
$Authentication
$Authentication
$BcMessage
- $Paginator
- $Security
$_View
@@ -3888,6 +3873,7 @@
Return values
update_title()
update_widget()
view()
+
viewClasses()
loadViewConditions()
saveDblog()
saveViewConditions()
diff --git a/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaControllerEventListener.html b/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaControllerEventListener.html
index d1ca1d58..f3d6813f 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaControllerEventListener.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaControllerEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaHelperEventListener.html b/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaHelperEventListener.html
index d06ea727..4a70db15 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaHelperEventListener.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Event-BcWidgetAreaHelperEventListener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcWidgetArea-Model-Entity-WidgetArea.html b/5/plugin/reference/classes/BcWidgetArea-Model-Entity-WidgetArea.html
index 567735ab..d16ccc2f 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Model-Entity-WidgetArea.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Model-Entity-WidgetArea.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -593,7 +597,7 @@
$created
- : FrozenTime
+ : DateTime
@@ -605,7 +609,7 @@
$modified
- : FrozenTime
+ : DateTime
@@ -707,7 +711,7 @@
public
- FrozenTime
+ DateTime
$created
@@ -779,7 +783,7 @@
public
- FrozenTime
+ DateTime
$modified
@@ -994,7 +998,7 @@
@@ -1029,6 +1033,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1054,7 +1065,7 @@
@@ -1091,6 +1102,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1116,7 +1134,7 @@
@@ -1163,6 +1181,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcWidgetArea-Model-Table-WidgetAreasTable.html b/5/plugin/reference/classes/BcWidgetArea-Model-Table-WidgetAreasTable.html
index b56d722d..c75764f6 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Model-Table-WidgetAreasTable.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Model-Table-WidgetAreasTable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -983,7 +987,7 @@
@@ -1139,7 +1143,7 @@
@@ -1327,7 +1331,7 @@
public
- find ( [ string $type = 'all' ] [ , array<string, mixed> $options = [] ] ) : Query
+ find ( [ string $type = 'all' ] , mixed ... $args ) : Query
@@ -1345,13 +1349,11 @@ Parameters
- $options
- : array<string, mixed>
- = []
+ $args
+ : mixed
+
- An array that will be passed to Query::applyOptions()
-
-
+
@@ -1404,7 +1406,7 @@
@@ -1475,7 +1477,7 @@
@@ -1623,7 +1625,7 @@
@@ -1700,7 +1702,7 @@
@@ -1747,6 +1749,13 @@
+
+
+ unitTest
+
+
+
+
@@ -1768,7 +1777,7 @@
@@ -1834,7 +1843,7 @@
@@ -1908,7 +1917,7 @@
@@ -1958,6 +1967,13 @@
+
+
+ unitTest
+
+
+
+
@@ -2059,7 +2075,7 @@
@@ -2136,7 +2152,7 @@
@@ -2213,7 +2229,7 @@
@@ -2258,6 +2274,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminService.html b/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminService.html
index a2b23f26..4fd72f63 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminService.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminServiceInterface.html b/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminServiceInterface.html
index 23de53f5..7a9fc9f8 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminServiceInterface.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Service-Admin-WidgetAreasAdminServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasService.html b/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasService.html
index 9684c2f3..9bb921d2 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasService.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasService.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasServiceInterface.html b/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasServiceInterface.html
index 790f14ec..030841b9 100644
--- a/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasServiceInterface.html
+++ b/5/plugin/reference/classes/BcWidgetArea-Service-WidgetAreasServiceInterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/BcWidgetArea-ServiceProvider-BcWidgetAreaServiceProvider.html b/5/plugin/reference/classes/BcWidgetArea-ServiceProvider-BcWidgetAreaServiceProvider.html
index 9043fad4..b30f4995 100644
--- a/5/plugin/reference/classes/BcWidgetArea-ServiceProvider-BcWidgetAreaServiceProvider.html
+++ b/5/plugin/reference/classes/BcWidgetArea-ServiceProvider-BcWidgetAreaServiceProvider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -683,7 +687,7 @@
@@ -728,6 +732,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaBaserHelper.html b/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaBaserHelper.html
index 292359df..a56b2c8c 100644
--- a/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaBaserHelper.html
+++ b/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaBaserHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -736,7 +740,7 @@
@@ -771,6 +775,13 @@
+
+
+ unitTest
+
+
+
+
diff --git a/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaHelper.html b/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaHelper.html
index 0470cd76..74909845 100644
--- a/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaHelper.html
+++ b/5/plugin/reference/classes/BcWidgetArea-View-Helper-BcWidgetAreaHelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/Cake-Routing-Asset.html b/5/plugin/reference/classes/Cake-Routing-Asset.html
index c54da2db..bfe5e1b5 100644
--- a/5/plugin/reference/classes/Cake-Routing-Asset.html
+++ b/5/plugin/reference/classes/Cake-Routing-Asset.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/classes/KCAPTCHA.html b/5/plugin/reference/classes/KCAPTCHA.html
index 112a2e13..4c34c9a0 100644
--- a/5/plugin/reference/classes/KCAPTCHA.html
+++ b/5/plugin/reference/classes/KCAPTCHA.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-annotation-checked.html b/5/plugin/reference/files/plugins-baser-core-src-annotation-checked.html
index 3e290fe8..05d40e13 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-annotation-checked.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-annotation-checked.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-annotation-doc.html b/5/plugin/reference/files/plugins-baser-core-src-annotation-doc.html
index 7daae991..37e39ac7 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-annotation-doc.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-annotation-doc.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-annotation-note.html b/5/plugin/reference/files/plugins-baser-core-src-annotation-note.html
index e96ea261..560c1d94 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-annotation-note.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-annotation-note.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-annotation-notodo.html b/5/plugin/reference/files/plugins-baser-core-src-annotation-notodo.html
index 94bca911..5c4c7bf6 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-annotation-notodo.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-annotation-notodo.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-annotation-unittest.html b/5/plugin/reference/files/plugins-baser-core-src-annotation-unittest.html
index 7e0c6a96..87a72467 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-annotation-unittest.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-annotation-unittest.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-basercoreplugin.html b/5/plugin/reference/files/plugins-baser-core-src-basercoreplugin.html
index 80290bcc..cdab4fa2 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-basercoreplugin.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-basercoreplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-bcplugin.html b/5/plugin/reference/files/plugins-baser-core-src-bcplugin.html
index 1a0f7280..666a96f7 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-bcplugin.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-bcplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-command-composercommand.html b/5/plugin/reference/files/plugins-baser-core-src-command-composercommand.html
index 3e04effd..c729c5fd 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-command-composercommand.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-command-composercommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-command-createreleasecommand.html b/5/plugin/reference/files/plugins-baser-core-src-command-createreleasecommand.html
index acf1a72a..071ae949 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-command-createreleasecommand.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-command-createreleasecommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-command-setupinstallcommand.html b/5/plugin/reference/files/plugins-baser-core-src-command-setupinstallcommand.html
index 5653d061..82755219 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-command-setupinstallcommand.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-command-setupinstallcommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-command-setuptestcommand.html b/5/plugin/reference/files/plugins-baser-core-src-command-setuptestcommand.html
index f6092b48..25452f5f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-command-setuptestcommand.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-command-setuptestcommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-command-updatecommand.html b/5/plugin/reference/files/plugins-baser-core-src-command-updatecommand.html
index 70521ab2..551cfc59 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-command-updatecommand.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-command-updatecommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-bcadminappcontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-bcadminappcontroller.html
index 4cb5987a..c2150398 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-bcadminappcontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-bcadminappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentfolderscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentfolderscontroller.html
index 3f4d5931..954b172f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentfolderscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentfolderscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentscontroller.html
index 434888fa..bee3e28a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-contentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dashboardcontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dashboardcontroller.html
index d803efb7..ff54e122 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dashboardcontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dashboardcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dblogscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dblogscontroller.html
index 03fd55a4..567dbf9e 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dblogscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-dblogscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pagescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pagescontroller.html
index c3ea2964..ae18eaf7 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pagescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pagescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-passwordrequestscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-passwordrequestscontroller.html
index 90c0f679..95725971 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-passwordrequestscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-passwordrequestscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissiongroupscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissiongroupscontroller.html
index 18205dd9..13047e39 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissiongroupscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissiongroupscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissionscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissionscontroller.html
index 1a1e1d6e..4c6bc9a3 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissionscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-permissionscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pluginscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pluginscontroller.html
index a9488428..4b895061 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pluginscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-pluginscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-previewcontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-previewcontroller.html
index 5e437238..4891a799 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-previewcontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-previewcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-siteconfigscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-siteconfigscontroller.html
index 546f0bfc..c8fc202b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-siteconfigscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-siteconfigscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-sitescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-sitescontroller.html
index 5abe86d5..55f5b4d2 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-sitescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-sitescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-themescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-themescontroller.html
index d60f3edd..87c5d5c5 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-themescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-themescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-updaterscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-updaterscontroller.html
index 0d8a68f4..01a382e3 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-updaterscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-updaterscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-usergroupscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-usergroupscontroller.html
index a1160dec..d24d66c2 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-usergroupscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-usergroupscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-userscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-userscontroller.html
index ae0d4e2c..39b444fe 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-userscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-userscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-utilitiescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-utilitiescontroller.html
index 944c7956..69eb59f0 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-admin-utilitiescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-admin-utilitiescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-analysecontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-analysecontroller.html
index dbf10e92..f7d19700 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-analysecontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-analysecontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-bcadminapicontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-bcadminapicontroller.html
index d0c1578a..e6bd45a5 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-bcadminapicontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-bcadminapicontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentfolderscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentfolderscontroller.html
index 2a192e1a..c129d494 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentfolderscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentfolderscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentscontroller.html
index 4c0e5711..3ea77eda 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-contentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-dblogscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-dblogscontroller.html
index f8c6cce7..eec410b6 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-dblogscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-dblogscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-jwkscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-jwkscontroller.html
index 945801c7..a006287d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-jwkscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-jwkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pagescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pagescontroller.html
index 4a3d3aca..4aa9feea 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pagescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pagescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissiongroupscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissiongroupscontroller.html
index ab998043..727b4cc2 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissiongroupscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissiongroupscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissionscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissionscontroller.html
index f7284ac9..40f4c364 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissionscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-permissionscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pluginscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pluginscontroller.html
index 057db3b3..9fd7a7e6 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pluginscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-pluginscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-siteconfigscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-siteconfigscontroller.html
index 7619794f..b6d2e3eb 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-siteconfigscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-siteconfigscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-sitescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-sitescontroller.html
index 7a1a4393..cc048a7d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-sitescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-sitescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-themescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-themescontroller.html
index 27aa80ca..502f5684 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-themescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-themescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-usergroupscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-usergroupscontroller.html
index 2532adbb..7943dda5 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-usergroupscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-usergroupscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-userscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-userscontroller.html
index 94b8f1d4..b7603c4f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-userscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-userscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-utilitiescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-utilitiescontroller.html
index 65149be2..c8278594 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-utilitiescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-admin-utilitiescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-bcapicontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-bcapicontroller.html
index 033eae96..f856a8de 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-bcapicontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-bcapicontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentfolderscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentfolderscontroller.html
index 2591611f..8f4e9e03 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentfolderscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentfolderscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentscontroller.html
index b9e09164..df643195 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-contentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-api-pagescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-api-pagescontroller.html
index 70f89496..00567a19 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-api-pagescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-api-pagescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-appcontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-appcontroller.html
index 5357069b..9164b96a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-appcontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-appcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-bcerrorcontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-bcerrorcontroller.html
index 333a5135..3de41624 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-bcerrorcontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-bcerrorcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-bcformcontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-bcformcontroller.html
index c66f1d11..6e7a8a90 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-bcformcontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-bcformcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-bcfrontappcontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-bcfrontappcontroller.html
index 328098d2..abca85ee 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-bcfrontappcontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-bcfrontappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcadmincontentscomponent.html b/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcadmincontentscomponent.html
index e4325e54..a42edcc3 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcadmincontentscomponent.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcadmincontentscomponent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcfrontcontentscomponent.html b/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcfrontcontentscomponent.html
index d889c538..4bedb4bb 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcfrontcontentscomponent.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcfrontcontentscomponent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcmessagecomponent.html b/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcmessagecomponent.html
index 4d1036cb..252ad767 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcmessagecomponent.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-component-bcmessagecomponent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-contentfolderscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-contentfolderscontroller.html
index 6bde17fe..62b2aa05 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-contentfolderscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-contentfolderscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-maintenancecontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-maintenancecontroller.html
index 58d11867..28da3098 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-maintenancecontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-maintenancecontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-pagescontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-pagescontroller.html
index 9871f6a7..d92c17b5 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-pagescontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-pagescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-passwordrequestscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-passwordrequestscontroller.html
index f43c224a..1592e03f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-passwordrequestscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-passwordrequestscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-uploadscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-uploadscontroller.html
index 49a25ca9..f184fb64 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-uploadscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-uploadscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-controller-userscontroller.html b/5/plugin/reference/files/plugins-baser-core-src-controller-userscontroller.html
index d53005ce..55efbb63 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-controller-userscontroller.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-controller-userscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcmigration.html b/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcmigration.html
index c6116ab7..90a3d3f3 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcmigration.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcmigration.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcseed.html b/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcseed.html
index 1b4cec61..759690de 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcseed.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-database-migration-bcseed.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-database-schema-bcschema.html b/5/plugin/reference/files/plugins-baser-core-src-database-schema-bcschema.html
index c3f58134..a263dc9f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-database-schema-bcschema.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-database-schema-bcschema.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-error-bcexception.html b/5/plugin/reference/files/plugins-baser-core-src-error-bcexception.html
index 18948115..5ddaf97b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-error-bcexception.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-error-bcexception.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-error-bcexceptionrenderer.html b/5/plugin/reference/files/plugins-baser-core-src-error-bcexceptionrenderer.html
index 6ac57f5c..6c43bfb7 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-error-bcexceptionrenderer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-error-bcexceptionrenderer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-error-bcformfailedexception.html b/5/plugin/reference/files/plugins-baser-core-src-error-bcformfailedexception.html
index ab1fdf71..4a2391a5 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-error-bcformfailedexception.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-error-bcformfailedexception.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-error-missingcolumnexception.html b/5/plugin/reference/files/plugins-baser-core-src-error-missingcolumnexception.html
new file mode 100644
index 00000000..c19c8aa6
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-error-missingcolumnexception.html
@@ -0,0 +1,755 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MissingColumnException.php
+
+ baserCMS : Based Website Development Project <https://basercms.net>
+Copyright (c) NPO baser foundation <https://baserfoundation.org/>
+
+
+
+
+
+ Tags
+
+
+
+
+
+ copyright
+
+
+
+ Copyright (c) NPO baser foundation
+
+
+
+
+ link
+
+
+ baserCMS Project
+
+
+
+
+ since
+
+
+ 5.0.0
+
+
+
+
+ license
+
+
+
+ https://basercms.net/license/index.html MIT License
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+ Classes
+
+
+
+
+ MissingColumnException MissingColumnException
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bcauthenticationeventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bcauthenticationeventlistener.html
new file mode 100644
index 00000000..9bc29acf
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bcauthenticationeventlistener.html
@@ -0,0 +1,755 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BcAuthenticationEventListener.php
+
+ baserCMS : Based Website Development Project <https://basercms.net>
+Copyright (c) NPO baser foundation <https://baserfoundation.org/>
+
+
+
+
+
+ Tags
+
+
+
+
+
+ copyright
+
+
+
+ Copyright (c) NPO baser foundation
+
+
+
+
+ link
+
+
+ baserCMS Project
+
+
+
+
+ since
+
+
+ 5.0.0
+
+
+
+
+ license
+
+
+
+ https://basercms.net/license/index.html MIT License
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+ Classes
+
+
+
+
+ BcAuthenticationEventListener Class BcAuthenticationEventListener
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bccontainereventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bccontainereventlistener.html
index 99dce8c6..0e5ec770 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bccontainereventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bccontainereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bccontentseventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bccontentseventlistener.html
index 90e6e029..f3cbe0c4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bccontentseventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bccontentseventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventdispatcher.html b/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventdispatcher.html
index d5c64e81..cdb2ec83 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventdispatcher.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventdispatcher.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventlistener.html
index 3f0672a2..c15cf7f6 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bccontrollereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatcher.html b/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatcher.html
index b801dfb2..025ddbde 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatcher.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatcher.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatchertrait.html b/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatchertrait.html
index a8fc32a0..7b19d506 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatchertrait.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bceventdispatchertrait.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bceventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bceventlistener.html
index f4b1b9d9..ca9fe6c8 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bceventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bceventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bchelpereventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bchelpereventlistener.html
index 52c63b99..0722bcb6 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bchelpereventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bchelpereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bcmailereventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bcmailereventlistener.html
index 7c27c1b5..5ccec69c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bcmailereventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bcmailereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventdispatcher.html b/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventdispatcher.html
index 4855d7dc..af8c94c4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventdispatcher.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventdispatcher.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventlistener.html
index e86e0a51..5a368c35 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bcmodeleventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bcshortcodeeventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bcshortcodeeventlistener.html
index e841716b..b797ce2f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bcshortcodeeventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bcshortcodeeventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventdispatcher.html b/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventdispatcher.html
index 7133c46a..d8839a00 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventdispatcher.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventdispatcher.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventlistener.html b/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventlistener.html
index db8b164a..07ef70e8 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventlistener.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-event-bcvieweventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-form-contentssearchform.html b/5/plugin/reference/files/plugins-baser-core-src-form-contentssearchform.html
index b83be76e..316dc356 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-form-contentssearchform.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-form-contentssearchform.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-identifier-resolver-prefixormresolver.html b/5/plugin/reference/files/plugins-baser-core-src-identifier-resolver-prefixormresolver.html
index d4d98414..3a3701d0 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-identifier-resolver-prefixormresolver.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-identifier-resolver-prefixormresolver.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-bcadminmailer.html b/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-bcadminmailer.html
index 0e0ed8b6..8765818a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-bcadminmailer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-bcadminmailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-passwordrequestmailer.html b/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-passwordrequestmailer.html
index 2e4ae0bd..310beead 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-passwordrequestmailer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-mailer-admin-passwordrequestmailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-mailer-bcmailer.html b/5/plugin/reference/files/plugins-baser-core-src-mailer-bcmailer.html
index ddc70ee8..065de131 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-mailer-bcmailer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-mailer-bcmailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-mailer-twofactorauthenticationmailer.html b/5/plugin/reference/files/plugins-baser-core-src-mailer-twofactorauthenticationmailer.html
new file mode 100644
index 00000000..d2e5b9b9
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-mailer-twofactorauthenticationmailer.html
@@ -0,0 +1,755 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TwoFactorAuthenticationMailer.php
+
+ baserCMS : Based Website Development Project <https://basercms.net>
+Copyright (c) NPO baser foundation <https://baserfoundation.org/>
+
+
+
+
+
+ Tags
+
+
+
+
+
+ copyright
+
+
+
+ Copyright (c) NPO baser foundation
+
+
+
+
+ link
+
+
+ baserCMS Project
+
+
+
+
+ since
+
+
+ 5.0.0
+
+
+
+
+ license
+
+
+
+ https://basercms.net/license/index.html MIT License
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+ Classes
+
+
+
+
+ TwoFactorAuthenticationMailer Class TwoFactorAuthenticationMailer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcadminmiddleware.html b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcadminmiddleware.html
index 76546ffb..ceb7ac72 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcadminmiddleware.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcadminmiddleware.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcfrontmiddleware.html b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcfrontmiddleware.html
index 90861b1b..3d777e7e 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcfrontmiddleware.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcfrontmiddleware.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectmainsitemiddleware.html b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectmainsitemiddleware.html
index bec15114..cdcdec0c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectmainsitemiddleware.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectmainsitemiddleware.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectsubsitemiddleware.html b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectsubsitemiddleware.html
index 1545a521..100fb585 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectsubsitemiddleware.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcredirectsubsitemiddleware.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcrequestfiltermiddleware.html b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcrequestfiltermiddleware.html
index a45cae0f..ae2db0ad 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-middleware-bcrequestfiltermiddleware.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-middleware-bcrequestfiltermiddleware.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bccontentsbehavior.html b/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bccontentsbehavior.html
index 4f241d70..6a3e92b5 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bccontentsbehavior.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bccontentsbehavior.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bckeyvaluebehavior.html b/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bckeyvaluebehavior.html
index 82b41df0..265252ef 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bckeyvaluebehavior.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bckeyvaluebehavior.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bcuploadbehavior.html b/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bcuploadbehavior.html
index aaf8b7a4..86a3bbe3 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bcuploadbehavior.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-behavior-bcuploadbehavior.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-content.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-content.html
index 2b9ce11c..92a41bcb 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-content.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-content.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-contentfolder.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-contentfolder.html
index 580ac0a5..62c85fe1 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-contentfolder.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-contentfolder.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-dblog.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-dblog.html
index d2fc81d4..9cfe1627 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-dblog.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-dblog.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-page.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-page.html
index 42efe114..3ff7fa2c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-page.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-page.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-passwordrequest.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-passwordrequest.html
index ffb785c5..854f2af8 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-passwordrequest.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-passwordrequest.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-permission.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-permission.html
index 74374f09..19ebe353 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-permission.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-permission.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-permissiongroup.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-permissiongroup.html
index d560a9a8..33f60fef 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-permissiongroup.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-permissiongroup.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-plugin.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-plugin.html
index 0e72532b..ca553a58 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-plugin.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-plugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-site.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-site.html
index 6d4682d8..e9844255 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-site.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-site.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-siteconfig.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-siteconfig.html
index 373e16ed..17388042 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-siteconfig.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-siteconfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-user.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-user.html
index 21b63db0..40987a03 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-user.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-user.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-entity-usergroup.html b/5/plugin/reference/files/plugins-baser-core-src-model-entity-usergroup.html
index 17ba1b18..5a8ef71b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-entity-usergroup.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-entity-usergroup.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-apptable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-apptable.html
index a549f164..e4b49697 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-apptable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-apptable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-contentfolderstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-contentfolderstable.html
index ce62f2a5..3d924d2f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-contentfolderstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-contentfolderstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-contentstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-contentstable.html
index 86208188..a1f320b8 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-contentstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-contentstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-dblogstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-dblogstable.html
index dc291938..43630075 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-dblogstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-dblogstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-exception-copyfailedexception.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-exception-copyfailedexception.html
index 4b5318d3..792b2170 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-exception-copyfailedexception.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-exception-copyfailedexception.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-loginstorestable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-loginstorestable.html
index aed05f7e..b7ce837d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-loginstorestable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-loginstorestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-pagestable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-pagestable.html
index da62e03b..c7032b01 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-pagestable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-pagestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-passwordrequeststable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-passwordrequeststable.html
index 99e1b55d..2e6c7713 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-passwordrequeststable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-passwordrequeststable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-permissiongroupstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-permissiongroupstable.html
index a91c5c45..4f7afe64 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-permissiongroupstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-permissiongroupstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-permissionstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-permissionstable.html
index 6c2c8f7f..21098a32 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-permissionstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-permissionstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-pluginstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-pluginstable.html
index d223b48f..33b36034 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-pluginstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-pluginstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-siteconfigstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-siteconfigstable.html
index 798c8f46..902d50cd 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-siteconfigstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-siteconfigstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-sitestable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-sitestable.html
index 63ba0ae3..b293bdbd 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-sitestable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-sitestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-softdeletetrait.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-softdeletetrait.html
new file mode 100644
index 00000000..6a9e023d
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-softdeletetrait.html
@@ -0,0 +1,755 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SoftDeleteTrait.php
+
+ baserCMS : Based Website Development Project <https://basercms.net>
+Copyright (c) NPO baser foundation <https://baserfoundation.org/>
+
+
+
+
+
+ Tags
+
+
+
+
+
+ copyright
+
+
+
+ Copyright (c) NPO baser foundation
+
+
+
+
+ link
+
+
+ baserCMS Project
+
+
+
+
+ since
+
+
+ 5.0.0
+
+
+
+
+ license
+
+
+
+ https://basercms.net/license/index.html MIT License
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+
+ Traits
+
+
+
+
+ SoftDeleteTrait SoftDeleteTrait
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-twofactorauthenticationstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-twofactorauthenticationstable.html
new file mode 100644
index 00000000..dc611d4e
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-twofactorauthenticationstable.html
@@ -0,0 +1,755 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TwoFactorAuthenticationsTable.php
+
+ baserCMS : Based Website Development Project <https://basercms.net>
+Copyright (c) NPO baser foundation <https://baserfoundation.org/>
+
+
+
+
+
+ Tags
+
+
+
+
+
+ copyright
+
+
+
+ Copyright (c) NPO baser foundation
+
+
+
+
+ link
+
+
+ baserCMS Project
+
+
+
+
+ since
+
+
+ 5.0.0
+
+
+
+
+ license
+
+
+
+ https://basercms.net/license/index.html MIT License
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+ Classes
+
+
+
+
+ TwoFactorAuthenticationsTable Class TwoFactorAuthenticationsTable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-usergroupstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-usergroupstable.html
index e7a525f7..10bb1a78 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-usergroupstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-usergroupstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-userstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-userstable.html
index 43a8039b..cdece92a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-userstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-userstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-table-usersusergroupstable.html b/5/plugin/reference/files/plugins-baser-core-src-model-table-usersusergroupstable.html
index 7038ad98..5f121fa7 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-table-usersusergroupstable.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-table-usersusergroupstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-validation-bcvalidation.html b/5/plugin/reference/files/plugins-baser-core-src-model-validation-bcvalidation.html
index c1c7f776..2fa5f5c1 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-validation-bcvalidation.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-validation-bcvalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-validation-pagevalidation.html b/5/plugin/reference/files/plugins-baser-core-src-model-validation-pagevalidation.html
index 3bc23110..fdc05f20 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-validation-pagevalidation.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-validation-pagevalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-validation-sitevalidation.html b/5/plugin/reference/files/plugins-baser-core-src-model-validation-sitevalidation.html
index e41a915a..dde1f6f1 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-validation-sitevalidation.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-validation-sitevalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-model-validation-uservalidation.html b/5/plugin/reference/files/plugins-baser-core-src-model-validation-uservalidation.html
index e2959f69..5d692dea 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-model-validation-uservalidation.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-model-validation-uservalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-orm-selectquery.html b/5/plugin/reference/files/plugins-baser-core-src-orm-selectquery.html
new file mode 100644
index 00000000..d8979687
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-orm-selectquery.html
@@ -0,0 +1,712 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ SelectQuery.php
+
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+ Classes
+
+
+
+
+ SelectQuery Soft delete-aware query
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-routing-asset.html b/5/plugin/reference/files/plugins-baser-core-src-routing-asset.html
index c3b9b5ab..4181b10b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-routing-asset.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-routing-asset.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-routing-route-bccontentsroute.html b/5/plugin/reference/files/plugins-baser-core-src-routing-route-bccontentsroute.html
index e84e88b4..d046f063 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-routing-route-bccontentsroute.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-routing-route-bccontentsroute.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-routing-routecollection.html b/5/plugin/reference/files/plugins-baser-core-src-routing-routecollection.html
index 0a43ff7a..7b9607e6 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-routing-routecollection.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-routing-routecollection.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappservice.html
index 4980272a..baf595fd 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappserviceinterface.html
index a597709c..81a110db 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadminappserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsservice.html
index e953d7f5..6b3e6eb1 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsserviceinterface.html
index 805b70e9..8697070c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-bcadmincontentsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminservice.html
index 4fb4b012..018b4664 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminserviceinterface.html
index a9d5d565..a46d5202 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentfoldersadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminservice.html
index cc0e0962..4abdf168 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminserviceinterface.html
index e49a7ff1..5e4c55ce 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-contentsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminservice.html
index f3e22f10..5726cf2b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminserviceinterface.html
index dd98f638..2367389b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-dashboardadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminservice.html
index ba3de64e..2965fb6d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminserviceinterface.html
index c20f1d4c..eb4d4c12 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pagesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminservice.html
index f84c7525..9f4eed7d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminserviceinterface.html
index 71cbe37f..2c44f973 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissiongroupsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminservice.html
index 0fa2acb4..f76c40de 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminserviceinterface.html
index 9f5abbe4..71bd0530 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-permissionsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminservice.html
index 165319c1..fdbfe886 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminserviceinterface.html
index 04ce341a..759be1de 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-pluginsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminservice.html
index 009970c4..83f8b2ca 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminserviceinterface.html
index fcfb4985..fd34dcb3 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-siteconfigsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminservice.html
index 17ab0bd3..d5d38656 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminserviceinterface.html
index fb9b2289..0c5782ca 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-sitesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminservice.html
index 965843ce..5debc41a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminserviceinterface.html
index c26cf6de..b4d4d30a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-themesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminservice.html
index 54195e75..139fd047 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminserviceinterface.html
index 771ff8d5..ae25633c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-usersadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminservice.html
index 9095413e..22e9af5f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminserviceinterface.html
index 7f023a5d..ac374198 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-admin-utilitiesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-appservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-appservice.html
index e15c02a3..3752395d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-appservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-appservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-appserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-appserviceinterface.html
index 98588f10..f86ed816 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-appserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-appserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaservice.html
index 45608b4e..cdd20534 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaserviceinterface.html
index 72d74587..5f21f96c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-bccaptchaserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseservice.html
index cbfa48f4..eb15fbf3 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseserviceinterface.html
index dfd91f6d..6858394e 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-bcdatabaseserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiservice.html
index 861a05a2..de3cad18 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiserviceinterface.html
index 88481764..9c781094 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-bcofficialapiserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersservice.html
index 37b913f3..3892aa36 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersserviceinterface.html
index f14600e0..73cceb6b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-contentfoldersserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-contentsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-contentsservice.html
index 3c6b60e3..cb0d337f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-contentsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-contentsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-contentsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-contentsserviceinterface.html
index 1c3189f3..b2212720 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-contentsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-contentsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-crudbaseserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-crudbaseserviceinterface.html
index de99f166..0e57b97e 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-crudbaseserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-crudbaseserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-dblogsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-dblogsservice.html
index 8e06f9e6..0a5263f9 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-dblogsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-dblogsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-dblogsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-dblogsserviceinterface.html
index 1869f44b..e00282ba 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-dblogsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-dblogsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsservice.html
index dea1af43..30ec08d0 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsserviceinterface.html
index d2aad79d..9ef846b9 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-front-bcfrontcontentsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontservice.html
index 35dd6388..8fb7c670 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontserviceinterface.html
index 79ebe3c9..5dcc22e8 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-front-contentfoldersfrontserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontservice.html
index 5423a407..e497cab8 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontserviceinterface.html
index 8a7b5e5f..fb970206 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-front-pagesfrontserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-pagesservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-pagesservice.html
index f133886a..9c8f004f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-pagesservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-pagesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-pagesserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-pagesserviceinterface.html
index cb8b6771..b428fc2d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-pagesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-pagesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsservice.html
index e08a7898..bcdc1a05 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsserviceinterface.html
index da2c91a7..00ea65d4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-passwordrequestsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsservice.html
index fd39dbcf..bde60f2c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsserviceinterface.html
index cbb94463..00eed5fa 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-permissiongroupsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-permissionsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-permissionsservice.html
index 99be65f1..61a63d67 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-permissionsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-permissionsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-permissionsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-permissionsserviceinterface.html
index 6e869f72..974e9b17 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-permissionsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-permissionsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-pluginsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-pluginsservice.html
index 68eee4a0..3e165760 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-pluginsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-pluginsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-pluginsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-pluginsserviceinterface.html
index 807893df..a20bdc0b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-pluginsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-pluginsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-previewserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-previewserviceinterface.html
index 61d6b610..b1fa9864 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-previewserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-previewserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsservice.html
index 7257f593..73f4b704 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsserviceinterface.html
index 9829e6a4..a862d8f2 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-siteconfigsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-sitesservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-sitesservice.html
index 5e670800..4997a264 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-sitesservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-sitesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-sitesserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-sitesserviceinterface.html
index 0a025ef6..b8ad406a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-sitesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-sitesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-themesservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-themesservice.html
index 047d87e6..9c80d6f1 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-themesservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-themesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-themesserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-themesserviceinterface.html
index 93739b11..d3a06686 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-themesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-themesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-twofactorauthenticationsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-twofactorauthenticationsservice.html
new file mode 100644
index 00000000..50b2375a
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-twofactorauthenticationsservice.html
@@ -0,0 +1,755 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TwoFactorAuthenticationsService.php
+
+ baserCMS : Based Website Development Project <https://basercms.net>
+Copyright (c) NPO baser foundation <https://baserfoundation.org/>
+
+
+
+
+
+ Tags
+
+
+
+
+
+ copyright
+
+
+
+ Copyright (c) NPO baser foundation
+
+
+
+
+ link
+
+
+ baserCMS Project
+
+
+
+
+ since
+
+
+ 5.0.0
+
+
+
+
+ license
+
+
+
+ https://basercms.net/license/index.html MIT License
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+ Classes
+
+
+
+
+ TwoFactorAuthenticationsService Class TwoFactorAuthenticationsService
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-twofactorauthenticationsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-twofactorauthenticationsserviceinterface.html
new file mode 100644
index 00000000..b6f9c998
--- /dev/null
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-twofactorauthenticationsserviceinterface.html
@@ -0,0 +1,755 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TwoFactorAuthenticationsServiceInterface.php
+
+ baserCMS : Based Website Development Project <https://basercms.net>
+Copyright (c) NPO baser foundation <https://baserfoundation.org/>
+
+
+
+
+
+ Tags
+
+
+
+
+
+ copyright
+
+
+
+ Copyright (c) NPO baser foundation
+
+
+
+
+ link
+
+
+ baserCMS Project
+
+
+
+
+ since
+
+
+ 5.0.0
+
+
+
+
+ license
+
+
+
+ https://basercms.net/license/index.html MIT License
+
+
+
+
+
+
+
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+ Interfaces
+
+
+
+
+ TwoFactorAuthenticationsServiceInterface Interface TwoFactorAuthenticationsServiceInterface
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsservice.html
index 127fc1ad..d13ac399 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsserviceinterface.html
index dfb8a387..f0306ee2 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-usergroupsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-usersservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-usersservice.html
index fd3539c4..a62bad4c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-usersservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-usersservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-usersserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-usersserviceinterface.html
index 99250a16..98070b47 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-usersserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-usersserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesservice.html b/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesservice.html
index a658a6f0..fbd52f99 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesservice.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesserviceinterface.html b/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesserviceinterface.html
index fe03bc4a..2cb45534 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-service-utilitiesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-serviceprovider-bcserviceprovider.html b/5/plugin/reference/files/plugins-baser-core-src-serviceprovider-bcserviceprovider.html
index fde467cf..5b10e218 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-serviceprovider-bcserviceprovider.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-serviceprovider-bcserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-testsuite-bceventlistenermock.html b/5/plugin/reference/files/plugins-baser-core-src-testsuite-bceventlistenermock.html
index 5fb14f94..bda256b4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-testsuite-bceventlistenermock.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-testsuite-bceventlistenermock.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-testsuite-bctestcase.html b/5/plugin/reference/files/plugins-baser-core-src-testsuite-bctestcase.html
index 86f5f189..a7687415 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-testsuite-bctestcase.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-testsuite-bctestcase.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcabstractdetector.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcabstractdetector.html
index 3040a129..dd038b64 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcabstractdetector.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcabstractdetector.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcagent.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcagent.html
index 77cb84f1..484944e4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcagent.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcagent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcapiutil.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcapiutil.html
index 5e10a38b..51f6b87e 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcapiutil.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcapiutil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bccomposer.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bccomposer.html
index 5d19de04..64efd9b4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bccomposer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bccomposer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainer.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainer.html
index 30f36629..662cb25b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainertrait.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainertrait.html
index 51f59eba..fbc910b1 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainertrait.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bccontainertrait.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcevent.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcevent.html
index b3196e27..c11f0906 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcevent.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcevent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcfile.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcfile.html
index 56118784..75e1aa6d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcfile.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcfile.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcfileuploader.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcfileuploader.html
index 8ec16fca..382a28cf 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcfileuploader.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcfileuploader.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcfolder.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcfolder.html
index 418fa966..18148ec9 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcfolder.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcfolder.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcgmaps.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcgmaps.html
index ccebfeca..8d16f380 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcgmaps.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcgmaps.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bclang.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bclang.html
index 5f2e3ec1..ae0170ae 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bclang.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bclang.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcpluginutil.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcpluginutil.html
index 5ca39251..311d1c82 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcpluginutil.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcpluginutil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcsiteconfig.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcsiteconfig.html
index 75f293e9..6af53aa4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcsiteconfig.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcsiteconfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bctext.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bctext.html
index 7467ec64..05084a44 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bctext.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bctext.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcupdatelog.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcupdatelog.html
index 90ddff7e..42d1fd0e 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcupdatelog.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcupdatelog.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bcutil.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bcutil.html
index 657933f4..46044f38 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bcutil.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bcutil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-utility-bczip.html b/5/plugin/reference/files/plugins-baser-core-src-utility-bczip.html
index f6877bf0..8f5def58 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-utility-bczip.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-utility-bczip.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-vendor-ckeditorstyleparser.html b/5/plugin/reference/files/plugins-baser-core-src-vendor-ckeditorstyleparser.html
index 99cfb7f5..dc083218 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-vendor-ckeditorstyleparser.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-vendor-ckeditorstyleparser.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-vendor-imageresizer.html b/5/plugin/reference/files/plugins-baser-core-src-vendor-imageresizer.html
index fee4b69d..44d5e9b0 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-vendor-imageresizer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-vendor-imageresizer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-form-example.html b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-form-example.html
index d1dcf72c..2a03631d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-form-example.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-form-example.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-index.html b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-index.html
index b9426f09..8c4b5068 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-index.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-index.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha-config.html b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha-config.html
index c220be39..e504f74e 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha-config.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha-config.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha.html b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha.html
index 54559be1..83d7c8e5 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-kcaptcha.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-util-font-preparer.html b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-util-font-preparer.html
index 3603ee0b..f93c6299 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-util-font-preparer.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-vendor-kcaptcha-util-font-preparer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-appview.html b/5/plugin/reference/files/plugins-baser-core-src-view-appview.html
index 91ceb76c..37e41b98 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-appview.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-appview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-bcadminappview.html b/5/plugin/reference/files/plugins-baser-core-src-view-bcadminappview.html
index 5076460b..54c56948 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-bcadminappview.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-bcadminappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontappview.html b/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontappview.html
index 3eceaeca..a267e444 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontappview.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontemailview.html b/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontemailview.html
index 8e9533d5..2bf19739 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontemailview.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-bcfrontemailview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-basercorebaserhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-basercorebaserhelper.html
index c3869939..4ef76efd 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-basercorebaserhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-basercorebaserhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminformhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminformhelper.html
index 4621083e..8a085039 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminformhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminformhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminhelper.html
index 871e8d66..8ac6c528 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcadminhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcarrayhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcarrayhelper.html
index 9455983d..dec545a7 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcarrayhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcarrayhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcauthhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcauthhelper.html
index 2f8f65a8..268d313c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcauthhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcauthhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcbaserhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcbaserhelper.html
index c91be357..8c5aff7c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcbaserhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcbaserhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcckeditorhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcckeditorhelper.html
index 32b1a64b..31c8ccd9 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcckeditorhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcckeditorhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccontentshelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccontentshelper.html
index be70d021..f1c315f9 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccontentshelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccontentshelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccsvhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccsvhelper.html
index 11dc9809..6bb8945c 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccsvhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bccsvhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformhelper.html
index 87679393..38e8775b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformtablehelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformtablehelper.html
index d664fee5..86f478bb 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformtablehelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcformtablehelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcfreezehelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcfreezehelper.html
index 27eb8c43..6bd64d9d 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcfreezehelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcfreezehelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcgooglemapshelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcgooglemapshelper.html
index 383c3f43..cc615ea8 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcgooglemapshelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcgooglemapshelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bchtmlhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bchtmlhelper.html
index e621bc8d..0d769ca7 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bchtmlhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bchtmlhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclayouthelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclayouthelper.html
index bc067d1e..59b7ff0f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclayouthelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclayouthelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclisttablehelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclisttablehelper.html
index a37f44a6..c54b5750 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclisttablehelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bclisttablehelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpagehelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpagehelper.html
index 4d6f4c4e..9e251d61 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpagehelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpagehelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpluginbaserhelperinterface.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpluginbaserhelperinterface.html
index d4fddeac..361100b9 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpluginbaserhelperinterface.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcpluginbaserhelperinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsearchboxhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsearchboxhelper.html
index aa530d73..2e6eb45f 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsearchboxhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsearchboxhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsiteconfighelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsiteconfighelper.html
index 9338494a..b0cdac92 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsiteconfighelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsiteconfighelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsmartphonehelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsmartphonehelper.html
index a442ef70..9cd7bf9a 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsmartphonehelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcsmartphonehelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctexthelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctexthelper.html
index 4326a45b..c6f12fd4 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctexthelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctexthelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctimehelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctimehelper.html
index b08cc746..c9236c44 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctimehelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctimehelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctoolbarhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctoolbarhelper.html
index 08280834..39459b90 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctoolbarhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bctoolbarhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcuploadhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcuploadhelper.html
index a7b4c4bc..00152f4b 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcuploadhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcuploadhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcxmlhelper.html b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcxmlhelper.html
index 19a2f60e..636859c1 100644
--- a/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcxmlhelper.html
+++ b/5/plugin/reference/files/plugins-baser-core-src-view-helper-bcxmlhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-admin-third-src-bcadminthirdplugin.html b/5/plugin/reference/files/plugins-bc-admin-third-src-bcadminthirdplugin.html
index a8abdcc7..83a6c9a9 100644
--- a/5/plugin/reference/files/plugins-bc-admin-third-src-bcadminthirdplugin.html
+++ b/5/plugin/reference/files/plugins-bc-admin-third-src-bcadminthirdplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-bcblogplugin.html b/5/plugin/reference/files/plugins-bc-blog-src-bcblogplugin.html
index 58bb3bdc..91dc125c 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-bcblogplugin.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-bcblogplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogadminappcontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogadminappcontroller.html
index 82744a11..7610b604 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogadminappcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogadminappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcategoriescontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcategoriescontroller.html
index abcf4c3a..6edddafe 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcategoriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcategoriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcommentscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcommentscontroller.html
index 9f44aece..40ea37f4 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcommentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcommentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcontentscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcontentscontroller.html
index e8039641..7ff72c01 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogpostscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogpostscontroller.html
index e7d60d1f..75954106 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogpostscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogpostscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogtagscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogtagscontroller.html
index c44818a7..330b4a1b 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogtagscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-admin-blogtagscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcategoriescontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcategoriescontroller.html
index 3ba1ca0d..65d526a4 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcategoriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcategoriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcommentscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcommentscontroller.html
index 3782f6bf..dbb6d7ae 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcommentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcommentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcontentscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcontentscontroller.html
index 7dcb7ef7..d29cc247 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogpostscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogpostscontroller.html
index 218768b1..fdc2e70b 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogpostscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogpostscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogtagscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogtagscontroller.html
index 676bcfe8..4e4198c5 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogtagscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-admin-blogtagscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcategoriescontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcategoriescontroller.html
index 3ebd0e41..d030856d 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcategoriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcategoriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcommentscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcommentscontroller.html
index 954c02be..86afc1b6 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcommentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcommentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcontentscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcontentscontroller.html
index 49c64cd3..ad3ef9e6 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogpostscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogpostscontroller.html
index c4e0e150..9695913b 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogpostscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogpostscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogtagscontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogtagscontroller.html
index ed25a75e..99529370 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogtagscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-api-blogtagscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-blogcontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-blogcontroller.html
index 6fd73497..550d4bf7 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-blogcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-blogcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-controller-blogfrontappcontroller.html b/5/plugin/reference/files/plugins-bc-blog-src-controller-blogfrontappcontroller.html
index a3d890d7..0093f03c 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-controller-blogfrontappcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-controller-blogfrontappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-event-bcblogvieweventlistener.html b/5/plugin/reference/files/plugins-bc-blog-src-event-bcblogvieweventlistener.html
index 65f7e68b..064bf187 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-event-bcblogvieweventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-event-bcblogvieweventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-mailer-blogcommentmailer.html b/5/plugin/reference/files/plugins-bc-blog-src-mailer-blogcommentmailer.html
index 25790226..d44ed1d4 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-mailer-blogcommentmailer.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-mailer-blogcommentmailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcategory.html b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcategory.html
index 78bf4f91..8f7bde70 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcategory.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcategory.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcomment.html b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcomment.html
index b47bfe8e..c41d99c5 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcomment.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcomment.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcontent.html b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcontent.html
index 405fe988..4bdcbcbd 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcontent.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogcontent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogpost.html b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogpost.html
index b2d16ded..b319ef1a 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogpost.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogpost.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogtag.html b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogtag.html
index f40c2b10..4913980c 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogtag.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-entity-blogtag.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogapptable.html b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogapptable.html
index b7c81ce4..ed36744a 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogapptable.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogapptable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcategoriestable.html b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcategoriestable.html
index cdf23298..9ebcdca8 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcategoriestable.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcategoriestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcommentstable.html b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcommentstable.html
index 7a9c9aad..c5d06988 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcommentstable.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcommentstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcontentstable.html b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcontentstable.html
index 7b932c63..2dc7e09c 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcontentstable.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogcontentstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpostsblogtagstable.html b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpostsblogtagstable.html
index 9ac97600..be27ad0c 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpostsblogtagstable.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpostsblogtagstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpoststable.html b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpoststable.html
index 01b769bf..cd984aa2 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpoststable.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogpoststable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogtagstable.html b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogtagstable.html
index ef373b49..0beaaa9d 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogtagstable.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-table-blogtagstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcategoryvalidation.html b/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcategoryvalidation.html
index 8153a471..c4ffc6ae 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcategoryvalidation.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcategoryvalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcontentvalidation.html b/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcontentvalidation.html
index 09915601..5b7f485e 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcontentvalidation.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-model-validation-blogcontentvalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminservice.html
index ae3f2f80..56b997c2 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminserviceinterface.html
index 33bc0b94..e4a84cb9 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcategoriesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminservice.html
index 7aae36fc..6aace420 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminserviceinterface.html
index 129f63f6..d9b8f2ee 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcommentsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminservice.html
index b4a07b10..d4bab868 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminserviceinterface.html
index 4acbbe78..4df635db 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogcontentsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminservice.html
index 5872ea77..5fb16ed4 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminserviceinterface.html
index 0da140d7..b59f7313 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-admin-blogpostsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesservice.html
index b00dea91..c9182576 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesserviceinterface.html
index 74b6373c..2ad27578 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcategoriesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsservice.html
index 7185ad80..705e3522 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsserviceinterface.html
index 348be1b7..8ecc03f2 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcommentsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsservice.html
index 7985dfb4..3e7fab8d 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsserviceinterface.html
index c6d6cccb..cbd265a6 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogcontentsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsservice.html
index c381e1a1..c62ca769 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsserviceinterface.html
index 7a85bbbe..410a9958 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogpostsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsservice.html
index 068c7841..65ef94e1 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsserviceinterface.html
index 4f4ebabd..d6143cb9 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-blogtagsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontservice.html b/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontservice.html
index 41f83d97..b8314ee3 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontservice.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontserviceinterface.html b/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontserviceinterface.html
index ef26eb32..de0d24f6 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-service-front-blogfrontserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-serviceprovider-bcblogserviceprovider.html b/5/plugin/reference/files/plugins-bc-blog-src-serviceprovider-bcblogserviceprovider.html
index 8a2209d5..b0092a4f 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-serviceprovider-bcblogserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-serviceprovider-bcblogserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-view-blogadminappview.html b/5/plugin/reference/files/plugins-bc-blog-src-view-blogadminappview.html
index fa0c2425..413d631e 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-view-blogadminappview.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-view-blogadminappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-view-blogfrontappview.html b/5/plugin/reference/files/plugins-bc-blog-src-view-blogfrontappview.html
index 7b94304b..4cba70f0 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-view-blogfrontappview.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-view-blogfrontappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bcblogbaserhelper.html b/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bcblogbaserhelper.html
index 3425f336..1b98e032 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bcblogbaserhelper.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bcblogbaserhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bloghelper.html b/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bloghelper.html
index dca20114..9e44a54e 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bloghelper.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-view-helper-bloghelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-blog-src-view-helper-rsshelper.html b/5/plugin/reference/files/plugins-bc-blog-src-view-helper-rsshelper.html
index 8fb059c0..2fe2fe09 100644
--- a/5/plugin/reference/files/plugins-bc-blog-src-view-helper-rsshelper.html
+++ b/5/plugin/reference/files/plugins-bc-blog-src-view-helper-rsshelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-bccontentlinkplugin.html b/5/plugin/reference/files/plugins-bc-content-link-src-bccontentlinkplugin.html
index 4bc3a96f..c83436e8 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-bccontentlinkplugin.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-bccontentlinkplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-controller-admin-contentlinkscontroller.html b/5/plugin/reference/files/plugins-bc-content-link-src-controller-admin-contentlinkscontroller.html
index c3887476..41fdfdaf 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-controller-admin-contentlinkscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-controller-admin-contentlinkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-admin-contentlinkscontroller.html b/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-admin-contentlinkscontroller.html
index 144c7cce..4bf3c0e6 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-admin-contentlinkscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-admin-contentlinkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-contentlinkscontroller.html b/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-contentlinkscontroller.html
index 68255541..8199fd6b 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-contentlinkscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-controller-api-contentlinkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-controller-contentlinkscontroller.html b/5/plugin/reference/files/plugins-bc-content-link-src-controller-contentlinkscontroller.html
index e0c163a7..9a2d8910 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-controller-contentlinkscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-controller-contentlinkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-model-entity-contentlink.html b/5/plugin/reference/files/plugins-bc-content-link-src-model-entity-contentlink.html
index 2a725817..c493ccdf 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-model-entity-contentlink.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-model-entity-contentlink.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-model-table-contentlinkstable.html b/5/plugin/reference/files/plugins-bc-content-link-src-model-table-contentlinkstable.html
index 8779882a..f30bd803 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-model-table-contentlinkstable.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-model-table-contentlinkstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksservice.html b/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksservice.html
index 4752b161..52edc029 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksservice.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksserviceinterface.html b/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksserviceinterface.html
index 7c73d107..1242b373 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-service-contentlinksserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-content-link-src-serviceprovider-bccontentlinkserviceprovider.html b/5/plugin/reference/files/plugins-bc-content-link-src-serviceprovider-bccontentlinkserviceprovider.html
index 9bd42217..aed3fc16 100644
--- a/5/plugin/reference/files/plugins-bc-content-link-src-serviceprovider-bccontentlinkserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-content-link-src-serviceprovider-bccontentlinkserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-bccustomcontentplugin.html b/5/plugin/reference/files/plugins-bc-custom-content-src-bccustomcontentplugin.html
index f22f8033..4e1aabf2 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-bccustomcontentplugin.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-bccustomcontentplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentadminappcontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentadminappcontroller.html
index 0d7e8a75..27f752c5 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentadminappcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentadminappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentscontroller.html
index 75db7552..31cd5d53 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customentriescontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customentriescontroller.html
index 3c5b0c92..6ca32618 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customentriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customentriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customfieldscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customfieldscontroller.html
index 5817e659..a2273d2a 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customfieldscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customfieldscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customlinkscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customlinkscontroller.html
index f00373e8..5c77421f 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customlinkscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customlinkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customtablescontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customtablescontroller.html
index bdea73bb..a5a04110 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customtablescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-admin-customtablescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customcontentscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customcontentscontroller.html
index d0ea8b27..d53d545f 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customentriescontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customentriescontroller.html
index e7026db2..9693f8fd 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customentriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customentriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customfieldscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customfieldscontroller.html
index 941607c3..6b057308 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customfieldscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customfieldscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customlinkscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customlinkscontroller.html
index d873a0c9..e1f7dd59 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customlinkscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customlinkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customtablescontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customtablescontroller.html
index 77164f2c..53a1601d 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customtablescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-admin-customtablescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customcontentscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customcontentscontroller.html
index 8eb3479c..32c8ae5c 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customentriescontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customentriescontroller.html
index 2d52bb38..5227a7eb 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customentriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customentriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customlinkscontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customlinkscontroller.html
index 53ae2fb2..192880d0 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customlinkscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-api-customlinkscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentcontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentcontroller.html
index 126e27d8..1d15a7d6 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentfrontappcontroller.html b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentfrontappcontroller.html
index b9ba3984..4209ca2d 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentfrontappcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-controller-customcontentfrontappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-event-bccustomcontentcontrollereventlistener.html b/5/plugin/reference/files/plugins-bc-custom-content-src-event-bccustomcontentcontrollereventlistener.html
index 78731452..e42fdfdb 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-event-bccustomcontentcontrollereventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-event-bccustomcontentcontrollereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customcontent.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customcontent.html
index 15f9e9da..9136f60d 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customcontent.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customcontent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customentry.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customentry.html
index 4739042a..711c9a74 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customentry.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customentry.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customfield.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customfield.html
index d628c651..47e1c065 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customfield.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customfield.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customlink.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customlink.html
index e0f61d7c..85e54b92 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customlink.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customlink.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customtable.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customtable.html
index 2d866325..299e8a70 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customtable.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-entity-customtable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customcontentstable.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customcontentstable.html
index 34aec1bd..bb76a7b9 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customcontentstable.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customcontentstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customentriestable.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customentriestable.html
index 8a0484da..d3fe9729 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customentriestable.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customentriestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customfieldstable.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customfieldstable.html
index 4da76ae7..1ace0d01 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customfieldstable.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customfieldstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customlinkstable.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customlinkstable.html
index 7f61b129..72f6f5df 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customlinkstable.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customlinkstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customtablestable.html b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customtablestable.html
index 93cd656e..9454c556 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customtablestable.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-model-table-customtablestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminservice.html
index 1473fd0e..e9d13c16 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminserviceinterface.html
index 3295bf53..ab34b2f7 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customcontentsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminservice.html
index 6818bb8f..b8984125 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminserviceinterface.html
index 15749395..7de79ca0 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customentriesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminservice.html
index 5ce13fc3..78098a80 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminserviceinterface.html
index e5907714..08dc0967 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customfieldsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminservice.html
index 25eb1188..6b85f105 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminserviceinterface.html
index 2c59b1b2..134a3f24 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customlinksadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminservice.html
index 8ddb28ce..10fa4ca9 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminserviceinterface.html
index 265e7c37..d32bb4d2 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-admin-customtablesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsservice.html
index 1b77f986..37a3cbdb 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsserviceinterface.html
index 9dd5e746..b02e85e6 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customcontentsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesservice.html
index 0f845af0..cd3c0af9 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesserviceinterface.html
index d54311dd..44eb4b68 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customentriesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsservice.html
index 43c77552..af3673c2 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsserviceinterface.html
index 8dbcfdd3..df435ed1 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customfieldsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksservice.html
index 807b7fb5..50787843 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksserviceinterface.html
index 102ccd72..fccb7bef 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customlinksserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesservice.html
index 61021d1c..1e46a07a 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesserviceinterface.html
index 7c4be1dd..a1c1cab5 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-customtablesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontservice.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontservice.html
index 11c530b9..c19df0ee 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontservice.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontserviceinterface.html b/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontserviceinterface.html
index 7b575d89..1cbea29c 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-service-front-customcontentfrontserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-serviceprovider-bccustomcontentserviceprovider.html b/5/plugin/reference/files/plugins-bc-custom-content-src-serviceprovider-bccustomcontentserviceprovider.html
index 15065a2d..55c73a90 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-serviceprovider-bccustomcontentserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-serviceprovider-bccustomcontentserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-utility-customcontentutil.html b/5/plugin/reference/files/plugins-bc-custom-content-src-utility-customcontentutil.html
index 26f49a21..923f8f3f 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-utility-customcontentutil.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-utility-customcontentutil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentadminappview.html b/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentadminappview.html
index ae4aee1f..9bd9247c 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentadminappview.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentadminappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentfrontappview.html b/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentfrontappview.html
index 126da920..251630b1 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentfrontappview.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-view-customcontentfrontappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-bccustomcontentbaserhelper.html b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-bccustomcontentbaserhelper.html
index 6dce3f00..f29cc470 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-bccustomcontentbaserhelper.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-bccustomcontentbaserhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentadminhelper.html b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentadminhelper.html
index 12ce4ecc..5246c391 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentadminhelper.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentadminhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentapphelper.html b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentapphelper.html
index 44e3f6f5..ab03f6d3 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentapphelper.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentapphelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentarraytrait.html b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentarraytrait.html
index 967ccf96..45572856 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentarraytrait.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontentarraytrait.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontenthelper.html b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontenthelper.html
index 13301b90..862412e9 100644
--- a/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontenthelper.html
+++ b/5/plugin/reference/files/plugins-bc-custom-content-src-view-helper-customcontenthelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-bceditortemplateplugin.html b/5/plugin/reference/files/plugins-bc-editor-template-src-bceditortemplateplugin.html
index b8e85dec..0e91ea73 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-bceditortemplateplugin.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-bceditortemplateplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-controller-admin-editortemplatescontroller.html b/5/plugin/reference/files/plugins-bc-editor-template-src-controller-admin-editortemplatescontroller.html
index f4cca481..01f972e5 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-controller-admin-editortemplatescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-controller-admin-editortemplatescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-controller-api-admin-editortemplatescontroller.html b/5/plugin/reference/files/plugins-bc-editor-template-src-controller-api-admin-editortemplatescontroller.html
index f2fdddba..3d1a3650 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-controller-api-admin-editortemplatescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-controller-api-admin-editortemplatescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-model-entity-editortemplate.html b/5/plugin/reference/files/plugins-bc-editor-template-src-model-entity-editortemplate.html
index b9d22241..f97fd4a6 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-model-entity-editortemplate.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-model-entity-editortemplate.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-model-table-editortemplatestable.html b/5/plugin/reference/files/plugins-bc-editor-template-src-model-table-editortemplatestable.html
index 1a6b2af9..f7c7c5eb 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-model-table-editortemplatestable.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-model-table-editortemplatestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminservice.html b/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminservice.html
index 9e07fe7a..d4af8bc5 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminserviceinterface.html
index 55e4bf4b..4c4f93e6 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-service-admin-editortemplatesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesservice.html b/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesservice.html
index 9f0b26e0..de8b8a83 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesservice.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesserviceinterface.html b/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesserviceinterface.html
index 4fa45c00..374a1ed2 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-service-editortemplatesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-editor-template-src-serviceprovider-bceditortemplateserviceprovider.html b/5/plugin/reference/files/plugins-bc-editor-template-src-serviceprovider-bceditortemplateserviceprovider.html
index 685c6e8a..1fc71cd2 100644
--- a/5/plugin/reference/files/plugins-bc-editor-template-src-serviceprovider-bceditortemplateserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-editor-template-src-serviceprovider-bceditortemplateserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-bcfavoriteplugin.html b/5/plugin/reference/files/plugins-bc-favorite-src-bcfavoriteplugin.html
index f436b6eb..36a3e1b3 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-bcfavoriteplugin.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-bcfavoriteplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-controller-api-admin-favoritescontroller.html b/5/plugin/reference/files/plugins-bc-favorite-src-controller-api-admin-favoritescontroller.html
index 5b146c70..d5e37b17 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-controller-api-admin-favoritescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-controller-api-admin-favoritescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-event-bcfavoritevieweventlistener.html b/5/plugin/reference/files/plugins-bc-favorite-src-event-bcfavoritevieweventlistener.html
index 4626df1d..c97b11a9 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-event-bcfavoritevieweventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-event-bcfavoritevieweventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-model-entity-favorite.html b/5/plugin/reference/files/plugins-bc-favorite-src-model-entity-favorite.html
index 167fb36f..f044f177 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-model-entity-favorite.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-model-entity-favorite.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-model-table-favoritestable.html b/5/plugin/reference/files/plugins-bc-favorite-src-model-table-favoritestable.html
index 5b511a6d..7f2397ed 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-model-table-favoritestable.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-model-table-favoritestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-model-validation-favoritevalidation.html b/5/plugin/reference/files/plugins-bc-favorite-src-model-validation-favoritevalidation.html
index 6a5e6fc3..36a1b082 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-model-validation-favoritevalidation.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-model-validation-favoritevalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesservice.html b/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesservice.html
index 384b7a50..cbcdef32 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesservice.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesserviceinterface.html b/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesserviceinterface.html
index 94f8bf47..ddeaf6f0 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-service-favoritesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-favorite-src-serviceprovider-bcfavoriteserviceprovider.html b/5/plugin/reference/files/plugins-bc-favorite-src-serviceprovider-bcfavoriteserviceprovider.html
index 90190b0c..1ea7f6de 100644
--- a/5/plugin/reference/files/plugins-bc-favorite-src-serviceprovider-bcfavoriteserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-favorite-src-serviceprovider-bcfavoriteserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-front-src-bcfrontplugin.html b/5/plugin/reference/files/plugins-bc-front-src-bcfrontplugin.html
index ba567487..31f99329 100644
--- a/5/plugin/reference/files/plugins-bc-front-src-bcfrontplugin.html
+++ b/5/plugin/reference/files/plugins-bc-front-src-bcfrontplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-bcinstallerplugin.html b/5/plugin/reference/files/plugins-bc-installer-src-bcinstallerplugin.html
index cbc26f0e..8064d80d 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-bcinstallerplugin.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-bcinstallerplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-command-installcheckcommand.html b/5/plugin/reference/files/plugins-bc-installer-src-command-installcheckcommand.html
index 6a46b6da..6cb00db0 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-command-installcheckcommand.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-command-installcheckcommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-command-installcommand.html b/5/plugin/reference/files/plugins-bc-installer-src-command-installcommand.html
index 9de3115d..132b92f5 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-command-installcommand.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-command-installcommand.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-controller-admin-installationscontroller.html b/5/plugin/reference/files/plugins-bc-installer-src-controller-admin-installationscontroller.html
index 92160f0e..10c9dc41 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-controller-admin-installationscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-controller-admin-installationscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-mailer-admin-installermailer.html b/5/plugin/reference/files/plugins-bc-installer-src-mailer-admin-installermailer.html
index 3e212b03..1b5eac06 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-mailer-admin-installermailer.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-mailer-admin-installermailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminservice.html b/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminservice.html
index e430b1bc..11eef786 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminserviceinterface.html
index 6f3be1c5..183e844f 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-service-admin-installationsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-service-installationsservice.html b/5/plugin/reference/files/plugins-bc-installer-src-service-installationsservice.html
index 76df69c6..2866f7dc 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-service-installationsservice.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-service-installationsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-service-installationsserviceinterface.html b/5/plugin/reference/files/plugins-bc-installer-src-service-installationsserviceinterface.html
index 4bd301ed..51f3ff42 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-service-installationsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-service-installationsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-installer-src-serviceprovider-bcinstallerserviceprovider.html b/5/plugin/reference/files/plugins-bc-installer-src-serviceprovider-bcinstallerserviceprovider.html
index 1dc36c14..e408a4b7 100644
--- a/5/plugin/reference/files/plugins-bc-installer-src-serviceprovider-bcinstallerserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-installer-src-serviceprovider-bcinstallerserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-bcmailplugin.html b/5/plugin/reference/files/plugins-bc-mail-src-bcmailplugin.html
index 18845263..bb6071d9 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-bcmailplugin.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-bcmailplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailadminappcontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailadminappcontroller.html
index 95d39e64..a149d1ba 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailadminappcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailadminappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailconfigscontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailconfigscontroller.html
index 98fff29c..0aad1368 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailconfigscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailconfigscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailcontentscontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailcontentscontroller.html
index 48135286..a1181f4e 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailfieldscontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailfieldscontroller.html
index fd5dd346..6d6a86e9 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailfieldscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailfieldscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailmessagescontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailmessagescontroller.html
index 7d0077c1..48de30f0 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailmessagescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-admin-mailmessagescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailcontentscontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailcontentscontroller.html
index 5550d879..f9794df3 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailfieldscontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailfieldscontroller.html
index 81c52e38..2b773ee6 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailfieldscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailfieldscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailmessagescontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailmessagescontroller.html
index 62a41750..57e027c3 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailmessagescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-admin-mailmessagescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailcontentscontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailcontentscontroller.html
index 4af3c716..55cf8cd5 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailcontentscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailcontentscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailfieldscontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailfieldscontroller.html
index e7d7f430..34d789f4 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailfieldscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailfieldscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailmessagescontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailmessagescontroller.html
index f53f7d07..10b4f2ae 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailmessagescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-api-mailmessagescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-mailcontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-mailcontroller.html
index 88e41734..7f7539a8 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-mailcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-mailcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-controller-mailfrontappcontroller.html b/5/plugin/reference/files/plugins-bc-mail-src-controller-mailfrontappcontroller.html
index 0ab1e142..87d00aa4 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-controller-mailfrontappcontroller.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-controller-mailfrontappcontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-event-bcmailvieweventlistener.html b/5/plugin/reference/files/plugins-bc-mail-src-event-bcmailvieweventlistener.html
index 28e76ecd..5c5bfa19 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-event-bcmailvieweventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-event-bcmailvieweventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-mailer-mailmessagemailer.html b/5/plugin/reference/files/plugins-bc-mail-src-mailer-mailmessagemailer.html
index de60a1ad..991696a0 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-mailer-mailmessagemailer.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-mailer-mailmessagemailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailconfig.html b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailconfig.html
index 3c95d444..f5be7680 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailconfig.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailconfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailcontent.html b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailcontent.html
index f1829a63..1b2d4202 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailcontent.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailcontent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailfield.html b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailfield.html
index faf2d235..e005a302 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailfield.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailfield.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailmessage.html b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailmessage.html
index 41b70f8a..a523926a 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailmessage.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-entity-mailmessage.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailapptable.html b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailapptable.html
index caf3f754..357a16b0 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailapptable.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailapptable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailconfigstable.html b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailconfigstable.html
index 31261fee..d3006396 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailconfigstable.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailconfigstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailcontentstable.html b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailcontentstable.html
index a8830a58..703bf8cd 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailcontentstable.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailcontentstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailfieldstable.html b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailfieldstable.html
index 8cb1294f..b8749c0e 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailfieldstable.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailfieldstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailmessagestable.html b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailmessagestable.html
index 55616137..f82b94ea 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailmessagestable.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-table-mailmessagestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-model-validation-mailmessagevalidation.html b/5/plugin/reference/files/plugins-bc-mail-src-model-validation-mailmessagevalidation.html
index f0b8c9ec..864c6831 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-model-validation-mailmessagevalidation.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-model-validation-mailmessagevalidation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminservice.html
index d551e0a8..221f8288 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminserviceinterface.html
index ff06e1ed..edd20730 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailconfigsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminservice.html
index b8bf79b1..28cd8517 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminserviceinterface.html
index 581f4566..85b8acee 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailcontentsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminservice.html
index 0212e69f..d6ea740f 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminserviceinterface.html
index 4a259ce0..81c2fe48 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailfieldsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminservice.html
index a5f0ba5f..c70a7f0f 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminserviceinterface.html
index fb45d69f..a353f0b8 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-admin-mailmessagesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontservice.html
index b6143db4..c9c451d0 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontserviceinterface.html
index c8fae669..c07957b7 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-front-mailfrontserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsservice.html
index 87cc20d3..e62abd23 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsserviceinterface.html
index d05ef285..30ed48be 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailconfigsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsservice.html
index 4ed592b9..3e7ab8cf 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsserviceinterface.html
index c2fcb7ed..c530245c 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailcontentsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsservice.html
index 54fc3153..cff4d25e 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsserviceinterface.html
index 7dac7b1b..6d9bda96 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailfieldsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesservice.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesservice.html
index e32b2990..49a9fdee 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesservice.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesserviceinterface.html b/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesserviceinterface.html
index b692f430..04748e08 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-service-mailmessagesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-serviceprovider-bcmailserviceprovider.html b/5/plugin/reference/files/plugins-bc-mail-src-serviceprovider-bcmailserviceprovider.html
index 1a2cfe55..2b82b265 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-serviceprovider-bcmailserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-serviceprovider-bcmailserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-cell-mailcell.html b/5/plugin/reference/files/plugins-bc-mail-src-view-cell-mailcell.html
index d0416f13..19f1374a 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-cell-mailcell.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-cell-mailcell.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-bcmailbaserhelper.html b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-bcmailbaserhelper.html
index 56017c3f..dfb6ab95 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-bcmailbaserhelper.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-bcmailbaserhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-maildatahelper.html b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-maildatahelper.html
index ebcd2628..0a8484c4 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-maildatahelper.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-maildatahelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailfieldhelper.html b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailfieldhelper.html
index 34317174..dd7f75c5 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailfieldhelper.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailfieldhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailformhelper.html b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailformhelper.html
index dbeeff2e..c5e3fd0d 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailformhelper.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailformhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailhelper.html b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailhelper.html
index d904b9c2..e8ce2a05 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailhelper.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-helper-mailhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-mailadminappview.html b/5/plugin/reference/files/plugins-bc-mail-src-view-mailadminappview.html
index 4e482cf9..80cc587c 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-mailadminappview.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-mailadminappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontappview.html b/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontappview.html
index 67b8b901..b4ced8aa 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontappview.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontappview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontemailview.html b/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontemailview.html
index 4d5b9548..cb44684c 100644
--- a/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontemailview.html
+++ b/5/plugin/reference/files/plugins-bc-mail-src-view-mailfrontemailview.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-bcsearchindexplugin.html b/5/plugin/reference/files/plugins-bc-search-index-src-bcsearchindexplugin.html
index 4b514bc2..036af710 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-bcsearchindexplugin.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-bcsearchindexplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-controller-admin-searchindexescontroller.html b/5/plugin/reference/files/plugins-bc-search-index-src-controller-admin-searchindexescontroller.html
index 61364b49..5f10e2f8 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-controller-admin-searchindexescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-controller-admin-searchindexescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-admin-searchindexescontroller.html b/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-admin-searchindexescontroller.html
index c206d263..da34ecf4 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-admin-searchindexescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-admin-searchindexescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-searchindexescontroller.html b/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-searchindexescontroller.html
index 3c03adb2..23947819 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-searchindexescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-controller-api-searchindexescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-controller-searchindexescontroller.html b/5/plugin/reference/files/plugins-bc-search-index-src-controller-searchindexescontroller.html
index 61cc7771..99a6264d 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-controller-searchindexescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-controller-searchindexescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexesfrontform.html b/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexesfrontform.html
index dcece7ab..16b3623f 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexesfrontform.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexesfrontform.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexessearchform.html b/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexessearchform.html
index 63c5b80a..7b8b141d 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexessearchform.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-form-searchindexessearchform.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-model-behavior-bcsearchindexmanagerbehavior.html b/5/plugin/reference/files/plugins-bc-search-index-src-model-behavior-bcsearchindexmanagerbehavior.html
index c08c4e2d..1fe62f05 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-model-behavior-bcsearchindexmanagerbehavior.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-model-behavior-bcsearchindexmanagerbehavior.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-model-entity-searchindex.html b/5/plugin/reference/files/plugins-bc-search-index-src-model-entity-searchindex.html
index ba12c4de..907a64a9 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-model-entity-searchindex.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-model-entity-searchindex.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-model-table-searchindexestable.html b/5/plugin/reference/files/plugins-bc-search-index-src-model-table-searchindexestable.html
index ea8386cb..529a5ce4 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-model-table-searchindexestable.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-model-table-searchindexestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminservice.html b/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminservice.html
index 72a5b5f7..f032a58d 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminserviceinterface.html
index c84a44d5..1a7711cd 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-service-admin-searchindexesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontservice.html b/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontservice.html
index 2d1f6e5d..8aea4431 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontservice.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontserviceinterface.html b/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontserviceinterface.html
index 3c699a77..ff2499f8 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-service-front-searchindexesfrontserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesservice.html b/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesservice.html
index d3ae2ba4..19acbfd2 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesservice.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesserviceinterface.html b/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesserviceinterface.html
index 058388ad..9dd7d990 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-service-searchindexesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-serviceprovider-bcsearchindexserviceprovider.html b/5/plugin/reference/files/plugins-bc-search-index-src-serviceprovider-bcsearchindexserviceprovider.html
index 2abf5e1b..06819a26 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-serviceprovider-bcsearchindexserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-serviceprovider-bcsearchindexserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-search-index-src-view-helper-bcsearchindexhelper.html b/5/plugin/reference/files/plugins-bc-search-index-src-view-helper-bcsearchindexhelper.html
index b6c10c0f..22fe561e 100644
--- a/5/plugin/reference/files/plugins-bc-search-index-src-view-helper-bcsearchindexhelper.html
+++ b/5/plugin/reference/files/plugins-bc-search-index-src-view-helper-bcsearchindexhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-bcthemeconfigplugin.html b/5/plugin/reference/files/plugins-bc-theme-config-src-bcthemeconfigplugin.html
index 494b8972..b2262718 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-bcthemeconfigplugin.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-bcthemeconfigplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-controller-admin-themeconfigscontroller.html b/5/plugin/reference/files/plugins-bc-theme-config-src-controller-admin-themeconfigscontroller.html
index b58a1d0a..e4b5ac33 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-controller-admin-themeconfigscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-controller-admin-themeconfigscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-controller-api-admin-themeconfigscontroller.html b/5/plugin/reference/files/plugins-bc-theme-config-src-controller-api-admin-themeconfigscontroller.html
index 56fca9a5..ed6129dd 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-controller-api-admin-themeconfigscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-controller-api-admin-themeconfigscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-event-bcthemeconfigcontrollereventlistener.html b/5/plugin/reference/files/plugins-bc-theme-config-src-event-bcthemeconfigcontrollereventlistener.html
index 2a800df6..689f0b2e 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-event-bcthemeconfigcontrollereventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-event-bcthemeconfigcontrollereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-model-entity-themeconfig.html b/5/plugin/reference/files/plugins-bc-theme-config-src-model-entity-themeconfig.html
index 1df78a37..55b7c88c 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-model-entity-themeconfig.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-model-entity-themeconfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-model-table-themeconfigstable.html b/5/plugin/reference/files/plugins-bc-theme-config-src-model-table-themeconfigstable.html
index ee9ab5de..8ec7ba33 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-model-table-themeconfigstable.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-model-table-themeconfigstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminservice.html b/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminservice.html
index 261dd024..874784fc 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminserviceinterface.html
index 04cbf239..5ac36c12 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-service-admin-themeconfigsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsservice.html b/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsservice.html
index 51f8ba2c..9b76b51f 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsservice.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsserviceinterface.html b/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsserviceinterface.html
index c8fdb3fa..50c62ad2 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-service-themeconfigsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-serviceprovider-bcthemeconfigserviceprovider.html b/5/plugin/reference/files/plugins-bc-theme-config-src-serviceprovider-bcthemeconfigserviceprovider.html
index 11cc4e9f..f0f0e102 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-serviceprovider-bcthemeconfigserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-serviceprovider-bcthemeconfigserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfigbaserhelper.html b/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfigbaserhelper.html
index 4a0243d4..2c5f1c4e 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfigbaserhelper.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfigbaserhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfighelper.html b/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfighelper.html
index 31c5d759..b7923e1e 100644
--- a/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfighelper.html
+++ b/5/plugin/reference/files/plugins-bc-theme-config-src-view-helper-bcthemeconfighelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-bcthemefileplugin.html b/5/plugin/reference/files/plugins-bc-theme-file-src-bcthemefileplugin.html
index 4e6e1dc9..5514b21e 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-bcthemefileplugin.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-bcthemefileplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-controller-admin-themefilescontroller.html b/5/plugin/reference/files/plugins-bc-theme-file-src-controller-admin-themefilescontroller.html
index 2d2fa4c6..381950f0 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-controller-admin-themefilescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-controller-admin-themefilescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefilescontroller.html b/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefilescontroller.html
index 5704fe77..2d95aaf0 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefilescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefilescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefolderscontroller.html b/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefolderscontroller.html
index 2912e669..f4a07ef0 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefolderscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-controller-api-admin-themefolderscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefileform.html b/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefileform.html
index c8c782f9..c8f919d4 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefileform.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefileform.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefolderform.html b/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefolderform.html
index 09d5cf7f..a9e859d3 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefolderform.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-form-themefolderform.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefile.html b/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefile.html
index c980f117..63535759 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefile.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefile.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefolder.html b/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefolder.html
index 4a8cecd0..23de91af 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefolder.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-model-entity-themefolder.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefilestable.html b/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefilestable.html
index 04bf8354..5fd3eb17 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefilestable.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefilestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefolderstable.html b/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefolderstable.html
index c5f78f66..b8b3e690 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefolderstable.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-model-table-themefolderstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminservice.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminservice.html
index 7378520d..7d936f29 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminserviceinterface.html
index a41cb434..52467eea 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefilesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminservice.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminservice.html
index 74708fc6..33516000 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminserviceinterface.html
index 53a90a7b..3bb6c1e5 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-admin-themefoldersadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileservice.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileservice.html
index 541bb0e6..d9d7d244 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileservice.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileserviceinterface.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileserviceinterface.html
index 73a6ed54..da6c00ce 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-bcthemefileserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesservice.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesservice.html
index 656818c3..825dc492 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesservice.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesserviceinterface.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesserviceinterface.html
index b14cb1e6..4f4c1b18 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefilesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersservice.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersservice.html
index 84f4ff21..32b49b8a 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersservice.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersserviceinterface.html b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersserviceinterface.html
index ab7a34df..9b6ea8e9 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-service-themefoldersserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-serviceprovider-bcthemefileserviceprovider.html b/5/plugin/reference/files/plugins-bc-theme-file-src-serviceprovider-bcthemefileserviceprovider.html
index 41227ed1..82f207a7 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-serviceprovider-bcthemefileserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-serviceprovider-bcthemefileserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-theme-file-src-utility-bcthemefileutil.html b/5/plugin/reference/files/plugins-bc-theme-file-src-utility-bcthemefileutil.html
index 26a2292f..94a2d05c 100644
--- a/5/plugin/reference/files/plugins-bc-theme-file-src-utility-bcthemefileutil.html
+++ b/5/plugin/reference/files/plugins-bc-theme-file-src-utility-bcthemefileutil.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-bcuploaderplugin.html b/5/plugin/reference/files/plugins-bc-uploader-src-bcuploaderplugin.html
index dbf3ba27..bf8511ab 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-bcuploaderplugin.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-bcuploaderplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploadercategoriescontroller.html b/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploadercategoriescontroller.html
index 4ad59f91..7697f486 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploadercategoriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploadercategoriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderconfigscontroller.html b/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderconfigscontroller.html
index a5af83ea..bbbc09c4 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderconfigscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderconfigscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderfilescontroller.html b/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderfilescontroller.html
index 2d235267..f81e0ea3 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderfilescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-controller-admin-uploaderfilescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploadercategoriescontroller.html b/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploadercategoriescontroller.html
index 72a3754e..8017c39e 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploadercategoriescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploadercategoriescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderconfigscontroller.html b/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderconfigscontroller.html
index 9b3825d2..0523b1be 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderconfigscontroller.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderconfigscontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderfilescontroller.html b/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderfilescontroller.html
index 37068040..4ec64869 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderfilescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-controller-api-admin-uploaderfilescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-controller-uploaderfilescontroller.html b/5/plugin/reference/files/plugins-bc-uploader-src-controller-uploaderfilescontroller.html
index b76b936d..c6900fe7 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-controller-uploaderfilescontroller.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-controller-uploaderfilescontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-event-bcuploadervieweventlistener.html b/5/plugin/reference/files/plugins-bc-uploader-src-event-bcuploadervieweventlistener.html
index b1116353..ae7c270f 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-event-bcuploadervieweventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-event-bcuploadervieweventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploadercategory.html b/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploadercategory.html
index 50c2dff9..98575d6a 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploadercategory.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploadercategory.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderconfig.html b/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderconfig.html
index 52120f38..f432d87d 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderconfig.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderconfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderfile.html b/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderfile.html
index 22428aba..1fe6dd62 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderfile.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-model-entity-uploaderfile.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploadercategoriestable.html b/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploadercategoriestable.html
index c495ad8a..a5812945 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploadercategoriestable.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploadercategoriestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderconfigstable.html b/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderconfigstable.html
index 4d2224a9..3b93b6c7 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderconfigstable.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderconfigstable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderfilestable.html b/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderfilestable.html
index 081b8587..a6474444 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderfilestable.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-model-table-uploaderfilestable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminservice.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminservice.html
index 7fc1645d..40882371 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminserviceinterface.html
index 74318b7b..3aba1a2e 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderconfigsadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminservice.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminservice.html
index f01f3ea9..fd4f9dcd 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminserviceinterface.html
index fcac9afa..19c97a91 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-admin-uploaderfilesadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesservice.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesservice.html
index 51eb932c..0e48145b 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesservice.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesserviceinterface.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesserviceinterface.html
index 89bc36ca..2e8b0185 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploadercategoriesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsservice.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsservice.html
index d1d8da6c..d7ee3852 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsservice.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsserviceinterface.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsserviceinterface.html
index 26ef8273..58795e3e 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderconfigsserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesservice.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesservice.html
index 1cede9b7..0e4756f2 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesservice.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesserviceinterface.html b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesserviceinterface.html
index 23cb0826..0aec9586 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-service-uploaderfilesserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-serviceprovider-bcuploaderserviceprovider.html b/5/plugin/reference/files/plugins-bc-uploader-src-serviceprovider-bcuploaderserviceprovider.html
index 37a4c8dc..0207891c 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-serviceprovider-bcuploaderserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-serviceprovider-bcuploaderserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-uploader-src-view-helper-uploaderhelper.html b/5/plugin/reference/files/plugins-bc-uploader-src-view-helper-uploaderhelper.html
index 2063beae..6b11ce61 100644
--- a/5/plugin/reference/files/plugins-bc-uploader-src-view-helper-uploaderhelper.html
+++ b/5/plugin/reference/files/plugins-bc-uploader-src-view-helper-uploaderhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-bcwidgetareaplugin.html b/5/plugin/reference/files/plugins-bc-widget-area-src-bcwidgetareaplugin.html
index fab13cb2..5e69c1b5 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-bcwidgetareaplugin.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-bcwidgetareaplugin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-controller-admin-widgetareascontroller.html b/5/plugin/reference/files/plugins-bc-widget-area-src-controller-admin-widgetareascontroller.html
index a1d0a7aa..6505dada 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-controller-admin-widgetareascontroller.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-controller-admin-widgetareascontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-controller-api-admin-widgetareascontroller.html b/5/plugin/reference/files/plugins-bc-widget-area-src-controller-api-admin-widgetareascontroller.html
index b0c524cd..ea7fe716 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-controller-api-admin-widgetareascontroller.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-controller-api-admin-widgetareascontroller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareacontrollereventlistener.html b/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareacontrollereventlistener.html
index cfd7046d..d46719ff 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareacontrollereventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareacontrollereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareahelpereventlistener.html b/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareahelpereventlistener.html
index 62c0b97b..eae7a893 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareahelpereventlistener.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-event-bcwidgetareahelpereventlistener.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-model-entity-widgetarea.html b/5/plugin/reference/files/plugins-bc-widget-area-src-model-entity-widgetarea.html
index 3582774d..9e2f48a6 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-model-entity-widgetarea.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-model-entity-widgetarea.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-model-table-widgetareastable.html b/5/plugin/reference/files/plugins-bc-widget-area-src-model-table-widgetareastable.html
index ea396026..1678bb7e 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-model-table-widgetareastable.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-model-table-widgetareastable.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminservice.html b/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminservice.html
index 258766ab..318c8401 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminservice.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminserviceinterface.html b/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminserviceinterface.html
index e7055961..0fd7b299 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-service-admin-widgetareasadminserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasservice.html b/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasservice.html
index 85d89826..aa4368c1 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasservice.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasservice.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasserviceinterface.html b/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasserviceinterface.html
index fb94f36a..f1ce3128 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasserviceinterface.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-service-widgetareasserviceinterface.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-serviceprovider-bcwidgetareaserviceprovider.html b/5/plugin/reference/files/plugins-bc-widget-area-src-serviceprovider-bcwidgetareaserviceprovider.html
index 3954c55f..330b7928 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-serviceprovider-bcwidgetareaserviceprovider.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-serviceprovider-bcwidgetareaserviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareabaserhelper.html b/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareabaserhelper.html
index e457560d..97bd2400 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareabaserhelper.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareabaserhelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareahelper.html b/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareahelper.html
index a8a8a2b7..537250d9 100644
--- a/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareahelper.html
+++ b/5/plugin/reference/files/plugins-bc-widget-area-src-view-helper-bcwidgetareahelper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/graphs/classes.html b/5/plugin/reference/graphs/classes.html
index b1e8b79b..03ee3bb9 100644
--- a/5/plugin/reference/graphs/classes.html
+++ b/5/plugin/reference/graphs/classes.html
@@ -91,6 +91,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/index.html b/5/plugin/reference/index.html
index 1e667f6f..3702162b 100644
--- a/5/plugin/reference/index.html
+++ b/5/plugin/reference/index.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/indices/files.html b/5/plugin/reference/indices/files.html
index 2ea67112..36cd13b0 100644
--- a/5/plugin/reference/indices/files.html
+++ b/5/plugin/reference/indices/files.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -559,6 +563,7 @@ B
BcApiUtil.php
BcArrayHelper.php
BcAuthHelper.php
+ BcAuthenticationEventListener.php
BcBaserHelper.php
BcBlogBaserHelper.php
BcBlogPlugin.php
@@ -954,6 +959,7 @@ M
MailfieldHelper.php
MailformHelper.php
MaintenanceController.php
+ MissingColumnException.php
N
T
U
diff --git a/5/plugin/reference/js/searchIndex.js b/5/plugin/reference/js/searchIndex.js
index f10fc3f5..b288a89c 100644
--- a/5/plugin/reference/js/searchIndex.js
+++ b/5/plugin/reference/js/searchIndex.js
@@ -373,7 +373,7 @@ Search.appendIndex(
}, {
"fqsen": "\\BaserCore\\Controller\\Admin\\BcAdminAppController\u003A\u003AredirectIfIsNotSameSite\u0028\u0029",
"name": "redirectIfIsNotSameSite",
- "summary": "siteUrl\u3084\u3001sslUrl\u3068\u73FE\u5728\u306EURL\u304C\u9055\u3046\u5834\u5408\u306B\u306F\u3001\u305D\u3061\u3089\u306EURL\u306B\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8\u3092\u884C\u3046\nsetting.php\u0020\u306B\u3066\u3001cmsUrl\u3068\u3057\u3066\u3001cmsUrl\u3092\u5B9A\u7FA9\u3057\u305F\u5834\u5408\u306B\u306F\u305D\u3061\u3089\u3092\u512A\u5148\u3059\u308B",
+ "summary": "siteUrl\u3084\u3001cmsUrl\u3068\u73FE\u5728\u306EURL\u304C\u9055\u3046\u5834\u5408\u306B\u306F\u3001\u305D\u3061\u3089\u306EURL\u306B\u30EA\u30C0\u30A4\u30EC\u30AF\u30C8\u3092\u884C\u3046\nsetting.php\u0020\u306B\u3066\u3001cmsUrl\u3068\u3057\u3066\u3001cmsUrl\u3092\u5B9A\u7FA9\u3057\u305F\u5834\u5408\u306B\u306F\u305D\u3061\u3089\u3092\u512A\u5148\u3059\u308B",
"url": "classes/BaserCore-Controller-Admin-BcAdminAppController.html#method_redirectIfIsNotSameSite"
}, {
"fqsen": "\\BaserCore\\Controller\\Admin\\ContentFoldersController",
@@ -580,11 +580,6 @@ Search.appendIndex(
"name": "PluginsController",
"summary": "Class\u0020PluginsController",
"url": "classes/BaserCore-Controller-Admin-PluginsController.html"
- }, {
- "fqsen": "\\BaserCore\\Controller\\Admin\\PluginsController\u003A\u003Ainitialize\u0028\u0029",
- "name": "initialize",
- "summary": "initialize",
- "url": "classes/BaserCore-Controller-Admin-PluginsController.html#method_initialize"
}, {
"fqsen": "\\BaserCore\\Controller\\Admin\\PluginsController\u003A\u003AbeforeFilter\u0028\u0029",
"name": "beforeFilter",
@@ -820,6 +815,11 @@ Search.appendIndex(
"name": "login",
"summary": "\u7BA1\u7406\u753B\u9762\u3078\u30ED\u30B0\u30A4\u30F3\u3059\u308B",
"url": "classes/BaserCore-Controller-Admin-UsersController.html#method_login"
+ }, {
+ "fqsen": "\\BaserCore\\Controller\\Admin\\UsersController\u003A\u003Alogin_code\u0028\u0029",
+ "name": "login_code",
+ "summary": "\u4E8C\u6BB5\u968E\u8A8D\u8A3C\u30B3\u30FC\u30C9\u5165\u529B",
+ "url": "classes/BaserCore-Controller-Admin-UsersController.html#method_login_code"
}, {
"fqsen": "\\BaserCore\\Controller\\Admin\\UsersController\u003A\u003Alogin_agent\u0028\u0029",
"name": "login_agent",
@@ -850,6 +850,11 @@ Search.appendIndex(
"name": "edit",
"summary": "\u30ED\u30B0\u30A4\u30F3\u30E6\u30FC\u30B6\u30FC\u7DE8\u96C6",
"url": "classes/BaserCore-Controller-Admin-UsersController.html#method_edit"
+ }, {
+ "fqsen": "\\BaserCore\\Controller\\Admin\\UsersController\u003A\u003Aedit_password\u0028\u0029",
+ "name": "edit_password",
+ "summary": "",
+ "url": "classes/BaserCore-Controller-Admin-UsersController.html#method_edit_password"
}, {
"fqsen": "\\BaserCore\\Controller\\Admin\\UsersController\u003A\u003Adelete\u0028\u0029",
"name": "delete",
@@ -925,6 +930,11 @@ Search.appendIndex(
"name": "AnalyseController",
"summary": "Class\u0020AnalyseController",
"url": "classes/BaserCore-Controller-AnalyseController.html"
+ }, {
+ "fqsen": "\\BaserCore\\Controller\\AnalyseController\u003A\u003AviewClasses\u0028\u0029",
+ "name": "viewClasses",
+ "summary": "View\u0020classes",
+ "url": "classes/BaserCore-Controller-AnalyseController.html#method_viewClasses"
}, {
"fqsen": "\\BaserCore\\Controller\\AnalyseController\u003A\u003Aindex\u0028\u0029",
"name": "index",
@@ -1560,6 +1570,11 @@ Search.appendIndex(
"name": "BcApiController",
"summary": "Class\u0020BcApiController",
"url": "classes/BaserCore-Controller-Api-BcApiController.html"
+ }, {
+ "fqsen": "\\BaserCore\\Controller\\Api\\BcApiController\u003A\u003AviewClasses\u0028\u0029",
+ "name": "viewClasses",
+ "summary": "View\u0020classes",
+ "url": "classes/BaserCore-Controller-Api-BcApiController.html#method_viewClasses"
}, {
"fqsen": "\\BaserCore\\Controller\\Api\\BcApiController\u003A\u003AbeforeFilter\u0028\u0029",
"name": "beforeFilter",
@@ -2090,6 +2105,26 @@ Search.appendIndex(
"name": "_messageTemplate",
"summary": "",
"url": "classes/BaserCore-Error-BcFormFailedException.html#property__messageTemplate"
+ }, {
+ "fqsen": "\\BaserCore\\Error\\MissingColumnException",
+ "name": "MissingColumnException",
+ "summary": "MissingColumnException",
+ "url": "classes/BaserCore-Error-MissingColumnException.html"
+ }, {
+ "fqsen": "\\BaserCore\\Event\\BcAuthenticationEventListener",
+ "name": "BcAuthenticationEventListener",
+ "summary": "Class\u0020BcAuthenticationEventListener",
+ "url": "classes/BaserCore-Event-BcAuthenticationEventListener.html"
+ }, {
+ "fqsen": "\\BaserCore\\Event\\BcAuthenticationEventListener\u003A\u003AimplementedEvents\u0028\u0029",
+ "name": "implementedEvents",
+ "summary": "implementedEvents",
+ "url": "classes/BaserCore-Event-BcAuthenticationEventListener.html#method_implementedEvents"
+ }, {
+ "fqsen": "\\BaserCore\\Event\\BcAuthenticationEventListener\u003A\u003AafterIdentify\u0028\u0029",
+ "name": "afterIdentify",
+ "summary": "\u8A8D\u8A3C\u5F8C\u51E6\u7406",
+ "url": "classes/BaserCore-Event-BcAuthenticationEventListener.html#method_afterIdentify"
}, {
"fqsen": "\\BaserCore\\Event\\BcContainerEventListener",
"name": "BcContainerEventListener",
@@ -2480,6 +2515,16 @@ Search.appendIndex(
"name": "plugin",
"summary": "\u30D7\u30E9\u30B0\u30A4\u30F3\u540D",
"url": "classes/BaserCore-Mailer-BcMailer.html#property_plugin"
+ }, {
+ "fqsen": "\\BaserCore\\Mailer\\TwoFactorAuthenticationMailer",
+ "name": "TwoFactorAuthenticationMailer",
+ "summary": "Class\u0020TwoFactorAuthenticationMailer",
+ "url": "classes/BaserCore-Mailer-TwoFactorAuthenticationMailer.html"
+ }, {
+ "fqsen": "\\BaserCore\\Mailer\\TwoFactorAuthenticationMailer\u003A\u003AsendCode\u0028\u0029",
+ "name": "sendCode",
+ "summary": "\u8A8D\u8A3C\u30B3\u30FC\u30C9\u9001\u4FE1",
+ "url": "classes/BaserCore-Mailer-TwoFactorAuthenticationMailer.html#method_sendCode"
}, {
"fqsen": "\\BaserCore\\Middleware\\BcAdminMiddleware",
"name": "BcAdminMiddleware",
@@ -3525,6 +3570,11 @@ Search.appendIndex(
"name": "initialize",
"summary": "Initialize\u0020method",
"url": "classes/BaserCore-Model-Table-PermissionGroupsTable.html#method_initialize"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\PermissionGroupsTable\u003A\u003AvalidationDefault\u0028\u0029",
+ "name": "validationDefault",
+ "summary": "Validation\u0020Default",
+ "url": "classes/BaserCore-Model-Table-PermissionGroupsTable.html#method_validationDefault"
}, {
"fqsen": "\\BaserCore\\Model\\Table\\PermissionsTable",
"name": "PermissionsTable",
@@ -3795,6 +3845,56 @@ Search.appendIndex(
"name": "changedAlias",
"summary": "\u4FDD\u5B58\u6642\u306B\u30A8\u30A4\u30EA\u30A2\u30B9\u304C\u5909\u66F4\u3055\u308C\u305F\u304B\u3069\u3046\u304B",
"url": "classes/BaserCore-Model-Table-SitesTable.html#property_changedAlias"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait",
+ "name": "SoftDeleteTrait",
+ "summary": "SoftDeleteTrait",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait\u003A\u003AgetSoftDeleteField\u0028\u0029",
+ "name": "getSoftDeleteField",
+ "summary": "Get\u0020the\u0020configured\u0020deletion\u0020field",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html#method_getSoftDeleteField"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait\u003A\u003ASelectQuery\u0028\u0029",
+ "name": "SelectQuery",
+ "summary": "Query\u0020override.",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html#method_SelectQuery"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait\u003A\u003A_processDelete\u0028\u0029",
+ "name": "_processDelete",
+ "summary": "Perform\u0020the\u0020delete\u0020operation.",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html#method__processDelete"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait\u003A\u003AdeleteAll\u0028\u0029",
+ "name": "deleteAll",
+ "summary": "Soft\u0020deletes\u0020all\u0020records\u0020matching\u0020\u0060\u0024conditions\u0060.",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html#method_deleteAll"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait\u003A\u003AhardDelete\u0028\u0029",
+ "name": "hardDelete",
+ "summary": "Hard\u0020deletes\u0020the\u0020given\u0020\u0024entity.",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html#method_hardDelete"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait\u003A\u003AhardDeleteAll\u0028\u0029",
+ "name": "hardDeleteAll",
+ "summary": "Hard\u0020deletes\u0020all\u0020records\u0020that\u0020were\u0020soft\u0020deleted\u0020before\u0020a\u0020given\u0020date.",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html#method_hardDeleteAll"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\SoftDeleteTrait\u003A\u003Arestore\u0028\u0029",
+ "name": "restore",
+ "summary": "Restore\u0020a\u0020soft\u0020deleted\u0020entity\u0020into\u0020an\u0020active\u0020state.",
+ "url": "classes/BaserCore-Model-Table-SoftDeleteTrait.html#method_restore"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\TwoFactorAuthenticationsTable",
+ "name": "TwoFactorAuthenticationsTable",
+ "summary": "Class\u0020TwoFactorAuthenticationsTable",
+ "url": "classes/BaserCore-Model-Table-TwoFactorAuthenticationsTable.html"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\TwoFactorAuthenticationsTable\u003A\u003Ainitialize\u0028\u0029",
+ "name": "initialize",
+ "summary": "initialize",
+ "url": "classes/BaserCore-Model-Table-TwoFactorAuthenticationsTable.html#method_initialize"
}, {
"fqsen": "\\BaserCore\\Model\\Table\\UserGroupsTable",
"name": "UserGroupsTable",
@@ -3860,6 +3960,11 @@ Search.appendIndex(
"name": "validationNew",
"summary": "Validation\u0020New",
"url": "classes/BaserCore-Model-Table-UsersTable.html#method_validationNew"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Table\\UsersTable\u003A\u003AvalidationPassword\u0028\u0029",
+ "name": "validationPassword",
+ "summary": "validationPassword",
+ "url": "classes/BaserCore-Model-Table-UsersTable.html#method_validationPassword"
}, {
"fqsen": "\\BaserCore\\Model\\Table\\UsersTable\u003A\u003AvalidationPasswordUpdate\u0028\u0029",
"name": "validationPasswordUpdate",
@@ -4025,16 +4130,6 @@ Search.appendIndex(
"name": "phpValidSyntax",
"summary": "PHP\u69CB\u6587\u30C1\u30A7\u30C3\u30AF",
"url": "classes/BaserCore-Model-Validation-PageValidation.html#method_phpValidSyntax"
- }, {
- "fqsen": "\\BaserCore\\Model\\Validation\\SiteConfigValidation",
- "name": "SiteConfigValidation",
- "summary": "Class\u0020SiteConfigValidation",
- "url": "classes/BaserCore-Model-Validation-SiteConfigValidation.html"
- }, {
- "fqsen": "\\BaserCore\\Model\\Validation\\SiteConfigValidation\u003A\u003AsslUrlExists\u0028\u0029",
- "name": "sslUrlExists",
- "summary": "SSL\u7528\u306EURL\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u308B\u304B\u30C1\u30A7\u30C3\u30AF\u3059\u308B",
- "url": "classes/BaserCore-Model-Validation-SiteConfigValidation.html#method_sslUrlExists"
}, {
"fqsen": "\\BaserCore\\Model\\Validation\\SiteValidation",
"name": "SiteValidation",
@@ -4050,6 +4145,11 @@ Search.appendIndex(
"name": "checkContentExists",
"summary": "\u30A8\u30A4\u30EA\u30A2\u30B9\u3068\u540C\u540D\u306E\u30B3\u30F3\u30C6\u30F3\u30C4\u304C\u5B58\u5728\u3059\u308B\u304B\u78BA\u8A8D\u3059\u308B",
"url": "classes/BaserCore-Model-Validation-SiteValidation.html#method_checkContentExists"
+ }, {
+ "fqsen": "\\BaserCore\\Model\\Validation\\SiteValidation\u003A\u003AcheckSiteAlias\u0028\u0029",
+ "name": "checkSiteAlias",
+ "summary": "\u30B5\u30A4\u30C8\u30A8\u30EA\u30A2\u30B9\u3092\u30D0\u30EA\u30C7\u30FC\u30B7\u30E7\u30F3\n\u30C9\u30E1\u30A4\u30F3\u30BF\u30A4\u30D7\u304C\u5916\u90E8\u30C9\u30E1\u30A4\u30F3\u306E\u5834\u5408\u3001\n\u82F1\u6570\u3001\u30CF\u30A4\u30D5\u30F3\u3001\u30A2\u30F3\u30C0\u30FC\u30B9\u30B3\u30A2\u4EE5\u5916\u30B9\u30E9\u30C3\u30B7\u30E5\uFF08\/\uFF09\u30FB\u30C9\u30C3\u30C8\uFF08.\uFF09\u3082\u8A31\u5BB9",
+ "url": "classes/BaserCore-Model-Validation-SiteValidation.html#method_checkSiteAlias"
}, {
"fqsen": "\\BaserCore\\Model\\Validation\\UserValidation",
"name": "UserValidation",
@@ -4060,6 +4160,16 @@ Search.appendIndex(
"name": "willChangeSelfGroup",
"summary": "\u81EA\u8EAB\u306E\u5C5E\u3059\u308B\u30E6\u30FC\u30B6\u30FC\u30B0\u30EB\u30FC\u30D7\u3092\u66F4\u65B0\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308B\u304B\u3069\u3046\u304B\u78BA\u8A8D",
"url": "classes/BaserCore-Model-Validation-UserValidation.html#method_willChangeSelfGroup"
+ }, {
+ "fqsen": "\\BaserCore\\ORM\\SelectQuery",
+ "name": "SelectQuery",
+ "summary": "Soft\u0020delete\u002Daware\u0020query",
+ "url": "classes/BaserCore-ORM-SelectQuery.html"
+ }, {
+ "fqsen": "\\BaserCore\\ORM\\SelectQuery\u003A\u003AtriggerBeforeFind\u0028\u0029",
+ "name": "triggerBeforeFind",
+ "summary": "Overwriting\u0020triggerBeforeFind\u0028\u0029\u0020to\u0020let\u0020queries\u0020not\u0020return\u0020soft\u0020deleted\u0020records",
+ "url": "classes/BaserCore-ORM-SelectQuery.html#method_triggerBeforeFind"
}, {
"fqsen": "\\Cake\\Routing\\Asset",
"name": "Asset",
@@ -7085,6 +7195,46 @@ Search.appendIndex(
"name": "createDownloadToTmp",
"summary": "\u6307\u5B9A\u3057\u305F\u30C6\u30FC\u30DE\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9\u7528\u306E\u30C6\u30FC\u30DE\u3068\u3057\u3066\u4E00\u6642\u30D5\u30A9\u30EB\u30C0\u306B\u4F5C\u6210\u3059\u308B",
"url": "classes/BaserCore-Service-ThemesServiceInterface.html#method_createDownloadToTmp"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsService",
+ "name": "TwoFactorAuthenticationsService",
+ "summary": "Class\u0020TwoFactorAuthenticationsService",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsService.html"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsService\u003A\u003A__construct\u0028\u0029",
+ "name": "__construct",
+ "summary": "TwoFactorAuthenticationsService\u0020constructor.",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsService.html#method___construct"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsService\u003A\u003Asend\u0028\u0029",
+ "name": "send",
+ "summary": "\u8A8D\u8A3C\u30B3\u30FC\u30C9\u9001\u4FE1",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsService.html#method_send"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsService\u003A\u003Averify\u0028\u0029",
+ "name": "verify",
+ "summary": "\u8A8D\u8A3C\u30B3\u30FC\u30C9\u691C\u8A3C",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsService.html#method_verify"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsService\u003A\u003A\u0024TwoFactorAuthentications",
+ "name": "TwoFactorAuthentications",
+ "summary": "TwoFactorAuthentications\u0020Table",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsService.html#property_TwoFactorAuthentications"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsServiceInterface",
+ "name": "TwoFactorAuthenticationsServiceInterface",
+ "summary": "Interface\u0020TwoFactorAuthenticationsServiceInterface",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsServiceInterface.html"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsServiceInterface\u003A\u003Asend\u0028\u0029",
+ "name": "send",
+ "summary": "\u8A8D\u8A3C\u30B3\u30FC\u30C9\u9001\u4FE1",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsServiceInterface.html#method_send"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\TwoFactorAuthenticationsServiceInterface\u003A\u003Averify\u0028\u0029",
+ "name": "verify",
+ "summary": "\u8A8D\u8A3C\u30B3\u30FC\u30C9\u691C\u8A3C",
+ "url": "classes/BaserCore-Service-TwoFactorAuthenticationsServiceInterface.html#method_verify"
}, {
"fqsen": "\\BaserCore\\Service\\UserGroupsService",
"name": "UserGroupsService",
@@ -7185,6 +7335,11 @@ Search.appendIndex(
"name": "update",
"summary": "\u30E6\u30FC\u30B6\u30FC\u60C5\u5831\u3092\u66F4\u65B0\u3059\u308B",
"url": "classes/BaserCore-Service-UsersService.html#method_update"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\UsersService\u003A\u003AupdatePassword\u0028\u0029",
+ "name": "updatePassword",
+ "summary": "\u30D1\u30B9\u30EF\u30FC\u30C9\u3092\u66F4\u65B0\u3059\u308B",
+ "url": "classes/BaserCore-Service-UsersService.html#method_updatePassword"
}, {
"fqsen": "\\BaserCore\\Service\\UsersService\u003A\u003Adelete\u0028\u0029",
"name": "delete",
@@ -7230,6 +7385,11 @@ Search.appendIndex(
"name": "checkAutoLogin",
"summary": "\u30ED\u30B0\u30A4\u30F3\u72B6\u614B\u306E\u4FDD\u5B58\u78BA\u8A8D",
"url": "classes/BaserCore-Service-UsersService.html#method_checkAutoLogin"
+ }, {
+ "fqsen": "\\BaserCore\\Service\\UsersService\u003A\u003AcheckPasswordModified\u0028\u0029",
+ "name": "checkPasswordModified",
+ "summary": "\u30E6\u30FC\u30B6\u30FC\u306E\u30D1\u30B9\u30EF\u30FC\u30C9\u66F4\u65B0\u65E5\u6642\u30C1\u30A7\u30C3\u30AF",
+ "url": "classes/BaserCore-Service-UsersService.html#method_checkPasswordModified"
}, {
"fqsen": "\\BaserCore\\Service\\UsersService\u003A\u003AloginToAgent\u0028\u0029",
"name": "loginToAgent",
@@ -7490,16 +7650,6 @@ Search.appendIndex(
"name": "truncateTable",
"summary": "\u30C6\u30FC\u30D6\u30EB\u3092\u7A7A\u306B\u3059\u308B",
"url": "classes/BaserCore-TestSuite-BcTestCase.html#method_truncateTable"
- }, {
- "fqsen": "\\BaserCore\\TestSuite\\BcTestCase\u003A\u003AsetUpFixtureManager\u0028\u0029",
- "name": "setUpFixtureManager",
- "summary": "setup\u0020FixtureManager",
- "url": "classes/BaserCore-TestSuite-BcTestCase.html#method_setUpFixtureManager"
- }, {
- "fqsen": "\\BaserCore\\TestSuite\\BcTestCase\u003A\u003AtearDownFixtureManager\u0028\u0029",
- "name": "tearDownFixtureManager",
- "summary": "tear\u0020down\u0020FixtureManager",
- "url": "classes/BaserCore-TestSuite-BcTestCase.html#method_tearDownFixtureManager"
}, {
"fqsen": "\\BaserCore\\TestSuite\\BcTestCase\u003A\u003AsetUp\u0028\u0029",
"name": "setUp",
@@ -7610,16 +7760,6 @@ Search.appendIndex(
"name": "fixtureTruncate",
"summary": "FixtureStrategy\u0020\u306B\u3066\u3001TruncateStrategy\u0020\u3092\u5229\u7528\u3059\u308B\u304B\u3069\u3046\u304B",
"url": "classes/BaserCore-TestSuite-BcTestCase.html#property_fixtureTruncate"
- }, {
- "fqsen": "\\BaserCore\\TestSuite\\BcTestCase\u003A\u003A\u0024FixtureManager",
- "name": "FixtureManager",
- "summary": "FixtureManager\n\u53E4\u3044\u30D5\u30A3\u30AF\u30B9\u30C1\u30E3\u30FC\u306E\u5F8C\u65B9\u4E92\u63DB\u7528",
- "url": "classes/BaserCore-TestSuite-BcTestCase.html#property_FixtureManager"
- }, {
- "fqsen": "\\BaserCore\\TestSuite\\BcTestCase\u003A\u003A\u0024FixtureInjector",
- "name": "FixtureInjector",
- "summary": "FixtureInjector\n\u53E4\u3044\u30D5\u30A3\u30AF\u30B9\u30C1\u30E3\u30FC\u306E\u5F8C\u65B9\u4E92\u63DB\u7528",
- "url": "classes/BaserCore-TestSuite-BcTestCase.html#property_FixtureInjector"
}, {
"fqsen": "\\BaserCore\\Utility\\BcAbstractDetector",
"name": "BcAbstractDetector",
@@ -7905,6 +8045,21 @@ Search.appendIndex(
"name": "write",
"summary": "\u30D5\u30A1\u30A4\u30EB\u3092\u66F8\u304D\u8FBC\u3080",
"url": "classes/BaserCore-Utility-BcFile.html#method_write"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFile\u003A\u003Adelete\u0028\u0029",
+ "name": "delete",
+ "summary": "\u30D5\u30A1\u30A4\u30EB\u3092\u524A\u9664",
+ "url": "classes/BaserCore-Utility-BcFile.html#method_delete"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFile\u003A\u003Asize\u0028\u0029",
+ "name": "size",
+ "summary": "\u30D5\u30A1\u30A4\u30EB\u306E\u30B5\u30A4\u30BA\u3092\u53D6\u5F97",
+ "url": "classes/BaserCore-Utility-BcFile.html#method_size"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFile\u003A\u003Aclose\u0028\u0029",
+ "name": "close",
+ "summary": "close",
+ "url": "classes/BaserCore-Utility-BcFile.html#method_close"
}, {
"fqsen": "\\BaserCore\\Utility\\BcFile\u003A\u003A\u0024path",
"name": "path",
@@ -8185,11 +8340,61 @@ Search.appendIndex(
"name": "delete",
"summary": "\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u518D\u5E30\u7684\u306B\u524A\u9664\u3059\u308B",
"url": "classes/BaserCore-Utility-BcFolder.html#method_delete"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003Acopy\u0028\u0029",
+ "name": "copy",
+ "summary": "\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u30B3\u30D4\u30FC\u3059\u308B",
+ "url": "classes/BaserCore-Utility-BcFolder.html#method_copy"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003Amove\u0028\u0029",
+ "name": "move",
+ "summary": "\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3092\u79FB\u52D5\u3059\u308B",
+ "url": "classes/BaserCore-Utility-BcFolder.html#method_move"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003Achmod\u0028\u0029",
+ "name": "chmod",
+ "summary": "\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u69CB\u9020\u306E\u30E2\u30FC\u30C9\u3092\u518D\u5E30\u7684\u306B\u5909\u66F4\u3057\u307E\u3059\u3002\u3053\u308C\u306B\u306F\u30D5\u30A1\u30A4\u30EB\u306E\u30E2\u30FC\u30C9\u3082\u5909\u66F4\u3059\u308B\u3053\u3068\u304C\u542B\u307E\u308C\u307E\u3059\u3002",
+ "url": "classes/BaserCore-Utility-BcFolder.html#method_chmod"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003Atree\u0028\u0029",
+ "name": "tree",
+ "summary": "\u5404\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u5185\u306E\u30CD\u30B9\u30C8\u3055\u308C\u305F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u3068\u30D5\u30A1\u30A4\u30EB\u306E\u914D\u5217\u3092\u8FD4\u3059",
+ "url": "classes/BaserCore-Utility-BcFolder.html#method_tree"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003Afind\u0028\u0029",
+ "name": "find",
+ "summary": "",
+ "url": "classes/BaserCore-Utility-BcFolder.html#method_find"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003Aread\u0028\u0029",
+ "name": "read",
+ "summary": "\u30D5\u30A9\u30EB\u30C0\u5185\u306E\u30D5\u30A1\u30A4\u30EB\u3068\u30D5\u30A9\u30EB\u30C0\u3092\u8AAD\u307F\u8FBC\u3080",
+ "url": "classes/BaserCore-Utility-BcFolder.html#method_read"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003Apwd\u0028\u0029",
+ "name": "pwd",
+ "summary": "\u30D1\u30B9\u3092\u53D6\u5F97\u3059\u308B",
+ "url": "classes/BaserCore-Utility-BcFolder.html#method_pwd"
}, {
"fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003A\u0024path",
"name": "path",
"summary": "\u30D1\u30B9",
"url": "classes/BaserCore-Utility-BcFolder.html#property_path"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003A\u0024mode",
+ "name": "mode",
+ "summary": "\u6A29\u9650",
+ "url": "classes/BaserCore-Utility-BcFolder.html#property_mode"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003A\u0024_messages",
+ "name": "_messages",
+ "summary": "Holds\u0020messages\u0020from\u0020last\u0020method.",
+ "url": "classes/BaserCore-Utility-BcFolder.html#property__messages"
+ }, {
+ "fqsen": "\\BaserCore\\Utility\\BcFolder\u003A\u003A\u0024_errors",
+ "name": "_errors",
+ "summary": "Holds\u0020errors\u0020from\u0020last\u0020method.",
+ "url": "classes/BaserCore-Utility-BcFolder.html#property__errors"
}, {
"fqsen": "\\BaserCore\\Utility\\BcGmaps",
"name": "BcGmaps",
@@ -11590,6 +11795,11 @@ Search.appendIndex(
"name": "copy",
"summary": "\u30B3\u30D4\u30FC\u3059\u308B",
"url": "classes/BcBlog-Model-Table-BlogCategoriesTable.html#method_copy"
+ }, {
+ "fqsen": "\\BcBlog\\Model\\Table\\BlogCategoriesTable\u003A\u003AgetParent\u0028\u0029",
+ "name": "getParent",
+ "summary": "\u89AA\u30AB\u30C6\u30B4\u30EA\u3092\u53D6\u5F97\u3059\u308B",
+ "url": "classes/BcBlog-Model-Table-BlogCategoriesTable.html#method_getParent"
}, {
"fqsen": "\\BcBlog\\Model\\Table\\BlogCategoriesTable\u003A\u003A\u0024validationParams",
"name": "validationParams",
@@ -12345,11 +12555,6 @@ Search.appendIndex(
"name": "createYearMonthDayCondition",
"summary": "\u5E74\u6708\u65E5\u6761\u4EF6\u3092\u751F\u6210\u3059\u308B",
"url": "classes/BcBlog-Service-BlogPostsService.html#method_createYearMonthDayCondition"
- }, {
- "fqsen": "\\BcBlog\\Service\\BlogPostsService\u003A\u003AcreateAuthorCondition\u0028\u0029",
- "name": "createAuthorCondition",
- "summary": "\u4F5C\u6210\u8005\u306E\u6761\u4EF6\u3092\u4F5C\u6210\u3059\u308B",
- "url": "classes/BcBlog-Service-BlogPostsService.html#method_createAuthorCondition"
}, {
"fqsen": "\\BcBlog\\Service\\BlogPostsService\u003A\u003AgetNew\u0028\u0029",
"name": "getNew",
@@ -16625,11 +16830,6 @@ Search.appendIndex(
"name": "validationDefault",
"summary": "Validation\u0020Default",
"url": "classes/BcMail-Model-Table-MailContentsTable.html#method_validationDefault"
- }, {
- "fqsen": "\\BcMail\\Model\\Table\\MailContentsTable\u003A\u003AcheckSslUrl\u0028\u0029",
- "name": "checkSslUrl",
- "summary": "SSL\u7528\u306EURL\u304C\u8A2D\u5B9A\u3055\u308C\u3066\u3044\u308B\u304B\u30C1\u30A7\u30C3\u30AF\u3059\u308B",
- "url": "classes/BcMail-Model-Table-MailContentsTable.html#method_checkSslUrl"
}, {
"fqsen": "\\BcMail\\Model\\Table\\MailContentsTable\u003A\u003AalphaNumeric\u0028\u0029",
"name": "alphaNumeric",
@@ -16698,7 +16898,7 @@ Search.appendIndex(
}, {
"fqsen": "\\BcMail\\Model\\Table\\MailFieldsTable\u003A\u003AhalfTextMailField\u0028\u0029",
"name": "halfTextMailField",
- "summary": "\u30E1\u30FC\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u5024\u3068\u3057\u3066\u6B63\u3057\u3044\u6587\u5B57\u5217\u304B\u691C\u8A3C\u3059\u308B\n\u534A\u89D2\u82F1\u6570\u002D_",
+ "summary": "\u30E1\u30FC\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306E\u5024\u3068\u3057\u3066\u6B63\u3057\u3044\u6587\u5B57\u5217\u304B\u691C\u8A3C\u3059\u308B\n\u534A\u89D2\u5C0F\u6587\u5B57\u82F1\u6570\u002D_\n\u30E1\u30FC\u30EB\u30D5\u30A3\u30FC\u30EB\u30C9\u306F\u3001DB\u30C6\u30FC\u30D6\u30EB\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u3068\u3057\u3066\u5229\u7528\u3055\u308C\u308B\u305F\u3081\u3001\n\u5927\u6587\u5B57\u3092\u5229\u7528\u3057\u305F\u5834\u5408\u306B\u30AF\u30A9\u30FC\u30C8\u3092\u5165\u308C\u306A\u3044\u3068\u30A8\u30E9\u30FC\u3068\u306A\u3063\u3066\u3057\u307E\u3046",
"url": "classes/BcMail-Model-Table-MailFieldsTable.html#method_halfTextMailField"
}, {
"fqsen": "\\BcMail\\Model\\Table\\MailFieldsTable\u003A\u003AsourceMailField\u0028\u0029",
@@ -19240,6 +19440,11 @@ Search.appendIndex(
"name": "afterLayout",
"summary": "After\u0020Layout",
"url": "classes/BcUploader-Event-BcUploaderViewEventListener.html#method_afterLayout"
+ }, {
+ "fqsen": "\\BcUploader\\Event\\BcUploaderViewEventListener\u003A\u003AsetUploader\u0028\u0029",
+ "name": "setUploader",
+ "summary": "",
+ "url": "classes/BcUploader-Event-BcUploaderViewEventListener.html#method_setUploader"
}, {
"fqsen": "\\BcUploader\\Event\\BcUploaderViewEventListener\u003A\u003A__getCkeditorUploaderScript\u0028\u0029",
"name": "__getCkeditorUploaderScript",
@@ -19250,11 +19455,6 @@ Search.appendIndex(
"name": "events",
"summary": "Events",
"url": "classes/BcUploader-Event-BcUploaderViewEventListener.html#property_events"
- }, {
- "fqsen": "\\BcUploader\\Event\\BcUploaderViewEventListener\u003A\u003A\u0024BcHtml",
- "name": "BcHtml",
- "summary": "BcHtmlHelper",
- "url": "classes/BcUploader-Event-BcUploaderViewEventListener.html#property_BcHtml"
}, {
"fqsen": "\\BcUploader\\Model\\Entity\\UploaderCategory",
"name": "UploaderCategory",
@@ -20220,6 +20420,11 @@ Search.appendIndex(
"name": "Validation",
"summary": "",
"url": "namespaces/basercore-model-validation.html"
+ }, {
+ "fqsen": "\\BaserCore\\ORM",
+ "name": "ORM",
+ "summary": "",
+ "url": "namespaces/basercore-orm.html"
}, {
"fqsen": "\\Cake\\Routing",
"name": "Routing",
diff --git a/5/plugin/reference/namespaces/basercore-annotation.html b/5/plugin/reference/namespaces/basercore-annotation.html
index a9d4a454..9718dba4 100644
--- a/5/plugin/reference/namespaces/basercore-annotation.html
+++ b/5/plugin/reference/namespaces/basercore-annotation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-command.html b/5/plugin/reference/namespaces/basercore-command.html
index 20310e5a..82f56898 100644
--- a/5/plugin/reference/namespaces/basercore-command.html
+++ b/5/plugin/reference/namespaces/basercore-command.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-controller-admin.html b/5/plugin/reference/namespaces/basercore-controller-admin.html
index 473e1a8d..6a304d44 100644
--- a/5/plugin/reference/namespaces/basercore-controller-admin.html
+++ b/5/plugin/reference/namespaces/basercore-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-controller-api-admin.html b/5/plugin/reference/namespaces/basercore-controller-api-admin.html
index 5f7868cd..6db8975f 100644
--- a/5/plugin/reference/namespaces/basercore-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/basercore-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-controller-api.html b/5/plugin/reference/namespaces/basercore-controller-api.html
index 26449697..ed6ea057 100644
--- a/5/plugin/reference/namespaces/basercore-controller-api.html
+++ b/5/plugin/reference/namespaces/basercore-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-controller-component.html b/5/plugin/reference/namespaces/basercore-controller-component.html
index 65f6f292..08a8a94a 100644
--- a/5/plugin/reference/namespaces/basercore-controller-component.html
+++ b/5/plugin/reference/namespaces/basercore-controller-component.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-controller.html b/5/plugin/reference/namespaces/basercore-controller.html
index a7775f8a..33292141 100644
--- a/5/plugin/reference/namespaces/basercore-controller.html
+++ b/5/plugin/reference/namespaces/basercore-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-database-migration.html b/5/plugin/reference/namespaces/basercore-database-migration.html
index b37b2124..4b01aa96 100644
--- a/5/plugin/reference/namespaces/basercore-database-migration.html
+++ b/5/plugin/reference/namespaces/basercore-database-migration.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-database-schema.html b/5/plugin/reference/namespaces/basercore-database-schema.html
index 89e2cc86..29a9a7f4 100644
--- a/5/plugin/reference/namespaces/basercore-database-schema.html
+++ b/5/plugin/reference/namespaces/basercore-database-schema.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-database.html b/5/plugin/reference/namespaces/basercore-database.html
index 411074d4..aa95fbbf 100644
--- a/5/plugin/reference/namespaces/basercore-database.html
+++ b/5/plugin/reference/namespaces/basercore-database.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-error.html b/5/plugin/reference/namespaces/basercore-error.html
index 55f16704..fb92142c 100644
--- a/5/plugin/reference/namespaces/basercore-error.html
+++ b/5/plugin/reference/namespaces/basercore-error.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -547,7 +551,7 @@
- BcException Class BcException BcExceptionRenderer BcExceptionRenderer BcFormFailedException BcFormFailedException
+ BcException Class BcException BcExceptionRenderer BcExceptionRenderer BcFormFailedException BcFormFailedException MissingColumnException MissingColumnException
diff --git a/5/plugin/reference/namespaces/basercore-event.html b/5/plugin/reference/namespaces/basercore-event.html
index eccedb29..290712c5 100644
--- a/5/plugin/reference/namespaces/basercore-event.html
+++ b/5/plugin/reference/namespaces/basercore-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -547,7 +551,7 @@
- BcContainerEventListener Class BcContainerEventListener BcContentsEventListener Class BcContentsEventListener BcControllerEventDispatcher Class BcControllerEventDispatcher BcControllerEventListener Class BcControllerEventListener BcEventDispatcher Class BcEventDispatcher BcEventListener Class BcEventListener BcHelperEventListener Class BcHelperEventListener BcMailerEventListener Class BcMailerEventListener BcModelEventDispatcher Class BcModelEventDispatcher BcModelEventListener Class BcModelEventListener BcShortCodeEventListener Class BcShortCodeEventListener BcViewEventDispatcher Class BcViewEventDispatcher BcViewEventListener Class BcViewEventListener
+ BcAuthenticationEventListener Class BcAuthenticationEventListener BcContainerEventListener Class BcContainerEventListener BcContentsEventListener Class BcContentsEventListener BcControllerEventDispatcher Class BcControllerEventDispatcher BcControllerEventListener Class BcControllerEventListener BcEventDispatcher Class BcEventDispatcher BcEventListener Class BcEventListener BcHelperEventListener Class BcHelperEventListener BcMailerEventListener Class BcMailerEventListener BcModelEventDispatcher Class BcModelEventDispatcher BcModelEventListener Class BcModelEventListener BcShortCodeEventListener Class BcShortCodeEventListener BcViewEventDispatcher Class BcViewEventDispatcher BcViewEventListener Class BcViewEventListener
Traits
diff --git a/5/plugin/reference/namespaces/basercore-form.html b/5/plugin/reference/namespaces/basercore-form.html
index 5044ea66..5eedae03 100644
--- a/5/plugin/reference/namespaces/basercore-form.html
+++ b/5/plugin/reference/namespaces/basercore-form.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-identifier-resolver.html b/5/plugin/reference/namespaces/basercore-identifier-resolver.html
index 5889bb95..0285df5c 100644
--- a/5/plugin/reference/namespaces/basercore-identifier-resolver.html
+++ b/5/plugin/reference/namespaces/basercore-identifier-resolver.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-identifier.html b/5/plugin/reference/namespaces/basercore-identifier.html
index 3a5bc107..43d6edde 100644
--- a/5/plugin/reference/namespaces/basercore-identifier.html
+++ b/5/plugin/reference/namespaces/basercore-identifier.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-mailer-admin.html b/5/plugin/reference/namespaces/basercore-mailer-admin.html
index 22b500ee..f366f622 100644
--- a/5/plugin/reference/namespaces/basercore-mailer-admin.html
+++ b/5/plugin/reference/namespaces/basercore-mailer-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-mailer.html b/5/plugin/reference/namespaces/basercore-mailer.html
index a0895a95..919d4775 100644
--- a/5/plugin/reference/namespaces/basercore-mailer.html
+++ b/5/plugin/reference/namespaces/basercore-mailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -555,7 +559,7 @@
- BcMailer Class BcMailer
+ BcMailer Class BcMailer TwoFactorAuthenticationMailer Class TwoFactorAuthenticationMailer
diff --git a/5/plugin/reference/namespaces/basercore-middleware.html b/5/plugin/reference/namespaces/basercore-middleware.html
index 13020386..a8765473 100644
--- a/5/plugin/reference/namespaces/basercore-middleware.html
+++ b/5/plugin/reference/namespaces/basercore-middleware.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-model-behavior.html b/5/plugin/reference/namespaces/basercore-model-behavior.html
index 6453d705..44c7ba2a 100644
--- a/5/plugin/reference/namespaces/basercore-model-behavior.html
+++ b/5/plugin/reference/namespaces/basercore-model-behavior.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-model-entity.html b/5/plugin/reference/namespaces/basercore-model-entity.html
index 1277ff9d..20073078 100644
--- a/5/plugin/reference/namespaces/basercore-model-entity.html
+++ b/5/plugin/reference/namespaces/basercore-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-model-table-exception.html b/5/plugin/reference/namespaces/basercore-model-table-exception.html
index 11ba711e..58f6f571 100644
--- a/5/plugin/reference/namespaces/basercore-model-table-exception.html
+++ b/5/plugin/reference/namespaces/basercore-model-table-exception.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-model-table.html b/5/plugin/reference/namespaces/basercore-model-table.html
index c30175b9..e3f45ad2 100644
--- a/5/plugin/reference/namespaces/basercore-model-table.html
+++ b/5/plugin/reference/namespaces/basercore-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -556,8 +560,15 @@
- AppTable Class AppTable ContentFoldersTable Class ContentFoldersTable ContentsTable Class ContentsTable DblogsTable Class AppTable LoginStoresTable Class LoginStoresTable PagesTable Class PagesTable PasswordRequestsTable Class UsersTable PermissionGroupsTable Class AppTable PermissionsTable Class PermissionTable PluginsTable Class PluginsTable SiteConfigsTable Class SiteConfig SitesTable Class Site UserGroupsTable Class UserGroupsTable UsersTable Class UsersTable UsersUserGroupsTable Class UsersUserGroupsTable
+ AppTable Class AppTable ContentFoldersTable Class ContentFoldersTable ContentsTable Class ContentsTable DblogsTable Class AppTable LoginStoresTable Class LoginStoresTable PagesTable Class PagesTable PasswordRequestsTable Class UsersTable PermissionGroupsTable Class AppTable PermissionsTable Class PermissionTable PluginsTable Class PluginsTable SiteConfigsTable Class SiteConfig SitesTable Class Site TwoFactorAuthenticationsTable Class TwoFactorAuthenticationsTable UserGroupsTable Class UserGroupsTable UsersTable Class UsersTable UsersUserGroupsTable Class UsersUserGroupsTable
+
+ Traits
+
+
+
+
+ SoftDeleteTrait SoftDeleteTrait
@@ -672,7 +683,8 @@
+ Traits
+
diff --git a/5/plugin/reference/namespaces/basercore-model-validation.html b/5/plugin/reference/namespaces/basercore-model-validation.html
index be7b87ac..ebb68178 100644
--- a/5/plugin/reference/namespaces/basercore-model-validation.html
+++ b/5/plugin/reference/namespaces/basercore-model-validation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -548,7 +552,7 @@
- BcValidation Class BcValidation PageValidation Class PageValidation SiteConfigValidation Class SiteConfigValidation SiteValidation Class SiteValidation UserValidation Class UserValidation
+ BcValidation Class BcValidation PageValidation Class PageValidation SiteValidation Class SiteValidation UserValidation Class UserValidation
diff --git a/5/plugin/reference/namespaces/basercore-model.html b/5/plugin/reference/namespaces/basercore-model.html
index f9b67c3d..cb65e0f6 100644
--- a/5/plugin/reference/namespaces/basercore-model.html
+++ b/5/plugin/reference/namespaces/basercore-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-orm.html b/5/plugin/reference/namespaces/basercore-orm.html
new file mode 100644
index 00000000..799d30b2
--- /dev/null
+++ b/5/plugin/reference/namespaces/basercore-orm.html
@@ -0,0 +1,703 @@
+
+
+
+
+ baserCMS クラスリファレンス
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ORM
+
+
+
+ Table of Contents
+
+
+
+
+
+
+
+
+ Classes
+
+
+
+
+ SelectQuery Soft delete-aware query
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/5/plugin/reference/namespaces/basercore-routing-route.html b/5/plugin/reference/namespaces/basercore-routing-route.html
index e71daf8e..998fe312 100644
--- a/5/plugin/reference/namespaces/basercore-routing-route.html
+++ b/5/plugin/reference/namespaces/basercore-routing-route.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-routing.html b/5/plugin/reference/namespaces/basercore-routing.html
index 69a4e91b..c6f0e281 100644
--- a/5/plugin/reference/namespaces/basercore-routing.html
+++ b/5/plugin/reference/namespaces/basercore-routing.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-service-admin.html b/5/plugin/reference/namespaces/basercore-service-admin.html
index 0d00099c..6d024a84 100644
--- a/5/plugin/reference/namespaces/basercore-service-admin.html
+++ b/5/plugin/reference/namespaces/basercore-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-service-front.html b/5/plugin/reference/namespaces/basercore-service-front.html
index c39fbe48..f18b319d 100644
--- a/5/plugin/reference/namespaces/basercore-service-front.html
+++ b/5/plugin/reference/namespaces/basercore-service-front.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-service.html b/5/plugin/reference/namespaces/basercore-service.html
index 71042246..2244af9b 100644
--- a/5/plugin/reference/namespaces/basercore-service.html
+++ b/5/plugin/reference/namespaces/basercore-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -555,7 +559,7 @@
- AppServiceInterface AppServiceInterface BcCaptchaServiceInterface interface BcCaptchaServiceInterface BcDatabaseServiceInterface BcDatabaseServiceInterface BcOfficialApiServiceInterface interface BcOfficialApiServiceInterface ContentFoldersServiceInterface Interface ContentFoldersServiceInterface ContentsServiceInterface Interface ContentsServiceInterface CrudBaseServiceInterface Interface CrudBaseServiceInterface DblogsServiceInterface Interface DblogsServiceInterface PagesServiceInterface Interface PagesServiceInterface PasswordRequestsServiceInterface PasswordRequestsServiceInterface PermissionGroupsServiceInterface PermissionGroupsServiceInterface PermissionsServiceInterface Interface PermissionsServiceInterface PluginsServiceInterface Interface PluginsServiceInterface PreviewServiceInterface PreviewServiceInterface SiteConfigsServiceInterface Interface SiteConfigsServiceInterface SitesServiceInterface SitesServiceInterface ThemesServiceInterface ThemesServiceInterface UserGroupsServiceInterface Interface UserGroupsServiceInterface UsersServiceInterface Interface UsersServiceInterface UtilitiesServiceInterface UtilitiesServiceInterface
+ AppServiceInterface AppServiceInterface BcCaptchaServiceInterface interface BcCaptchaServiceInterface BcDatabaseServiceInterface BcDatabaseServiceInterface BcOfficialApiServiceInterface interface BcOfficialApiServiceInterface ContentFoldersServiceInterface Interface ContentFoldersServiceInterface ContentsServiceInterface Interface ContentsServiceInterface CrudBaseServiceInterface Interface CrudBaseServiceInterface DblogsServiceInterface Interface DblogsServiceInterface PagesServiceInterface Interface PagesServiceInterface PasswordRequestsServiceInterface PasswordRequestsServiceInterface PermissionGroupsServiceInterface PermissionGroupsServiceInterface PermissionsServiceInterface Interface PermissionsServiceInterface PluginsServiceInterface Interface PluginsServiceInterface PreviewServiceInterface PreviewServiceInterface SiteConfigsServiceInterface Interface SiteConfigsServiceInterface SitesServiceInterface SitesServiceInterface ThemesServiceInterface ThemesServiceInterface TwoFactorAuthenticationsServiceInterface Interface TwoFactorAuthenticationsServiceInterface UserGroupsServiceInterface Interface UserGroupsServiceInterface UsersServiceInterface Interface UsersServiceInterface UtilitiesServiceInterface UtilitiesServiceInterface
Classes
@@ -563,7 +567,7 @@
- AppService AppService BcCaptchaService Class BcCaptchaService BcDatabaseService BcOfficialApiService interface BcOfficialApiService ContentFoldersService Class ContentFoldersService ContentsService Class ContentsService DblogsService Class DblogsService PagesService Class PagesService PasswordRequestsService PasswordRequestsService PermissionGroupsService PermissionGroupsService PermissionsService Class PermissionsService PluginsService Class PluginsService SiteConfigsService Class SiteConfigsMockService SitesService Class SitesService ThemesService ThemesService UserGroupsService Class UserGroupsService UsersService Class UsersService UtilitiesService UtilitiesService
+ AppService AppService BcCaptchaService Class BcCaptchaService BcDatabaseService BcOfficialApiService interface BcOfficialApiService ContentFoldersService Class ContentFoldersService ContentsService Class ContentsService DblogsService Class DblogsService PagesService Class PagesService PasswordRequestsService PasswordRequestsService PermissionGroupsService PermissionGroupsService PermissionsService Class PermissionsService PluginsService Class PluginsService SiteConfigsService Class SiteConfigsMockService SitesService Class SitesService ThemesService ThemesService TwoFactorAuthenticationsService Class TwoFactorAuthenticationsService UserGroupsService Class UserGroupsService UsersService Class UsersService UtilitiesService UtilitiesService
diff --git a/5/plugin/reference/namespaces/basercore-serviceprovider.html b/5/plugin/reference/namespaces/basercore-serviceprovider.html
index d963019b..0579a039 100644
--- a/5/plugin/reference/namespaces/basercore-serviceprovider.html
+++ b/5/plugin/reference/namespaces/basercore-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-testsuite.html b/5/plugin/reference/namespaces/basercore-testsuite.html
index a260202a..59904c7e 100644
--- a/5/plugin/reference/namespaces/basercore-testsuite.html
+++ b/5/plugin/reference/namespaces/basercore-testsuite.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-utility.html b/5/plugin/reference/namespaces/basercore-utility.html
index 76fb5009..eb6d78b6 100644
--- a/5/plugin/reference/namespaces/basercore-utility.html
+++ b/5/plugin/reference/namespaces/basercore-utility.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-vendor.html b/5/plugin/reference/namespaces/basercore-vendor.html
index 1ad52c94..b55d3784 100644
--- a/5/plugin/reference/namespaces/basercore-vendor.html
+++ b/5/plugin/reference/namespaces/basercore-vendor.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-view-helper.html b/5/plugin/reference/namespaces/basercore-view-helper.html
index baf715df..8513a5c1 100644
--- a/5/plugin/reference/namespaces/basercore-view-helper.html
+++ b/5/plugin/reference/namespaces/basercore-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore-view.html b/5/plugin/reference/namespaces/basercore-view.html
index c88d672c..e95c1f53 100644
--- a/5/plugin/reference/namespaces/basercore-view.html
+++ b/5/plugin/reference/namespaces/basercore-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/basercore.html b/5/plugin/reference/namespaces/basercore.html
index 76f83a53..95ffabc7 100644
--- a/5/plugin/reference/namespaces/basercore.html
+++ b/5/plugin/reference/namespaces/basercore.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -555,6 +559,7 @@
Mailer
Middleware
Model
+ ORM
Routing
Service
ServiceProvider
diff --git a/5/plugin/reference/namespaces/bcadminthird.html b/5/plugin/reference/namespaces/bcadminthird.html
index 5aa58aeb..d39f1498 100644
--- a/5/plugin/reference/namespaces/bcadminthird.html
+++ b/5/plugin/reference/namespaces/bcadminthird.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-controller-admin.html b/5/plugin/reference/namespaces/bcblog-controller-admin.html
index be167ce9..f542f39c 100644
--- a/5/plugin/reference/namespaces/bcblog-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcblog-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-controller-api-admin.html b/5/plugin/reference/namespaces/bcblog-controller-api-admin.html
index e1511fed..855db0a4 100644
--- a/5/plugin/reference/namespaces/bcblog-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcblog-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-controller-api.html b/5/plugin/reference/namespaces/bcblog-controller-api.html
index a1f4ff4d..2403e4c1 100644
--- a/5/plugin/reference/namespaces/bcblog-controller-api.html
+++ b/5/plugin/reference/namespaces/bcblog-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-controller.html b/5/plugin/reference/namespaces/bcblog-controller.html
index ede946dc..cfd39797 100644
--- a/5/plugin/reference/namespaces/bcblog-controller.html
+++ b/5/plugin/reference/namespaces/bcblog-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-event.html b/5/plugin/reference/namespaces/bcblog-event.html
index ace58c44..d45af887 100644
--- a/5/plugin/reference/namespaces/bcblog-event.html
+++ b/5/plugin/reference/namespaces/bcblog-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-mailer.html b/5/plugin/reference/namespaces/bcblog-mailer.html
index 8ae92b55..58639c4b 100644
--- a/5/plugin/reference/namespaces/bcblog-mailer.html
+++ b/5/plugin/reference/namespaces/bcblog-mailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-model-entity.html b/5/plugin/reference/namespaces/bcblog-model-entity.html
index 11d1d95a..9e94f0f1 100644
--- a/5/plugin/reference/namespaces/bcblog-model-entity.html
+++ b/5/plugin/reference/namespaces/bcblog-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-model-table.html b/5/plugin/reference/namespaces/bcblog-model-table.html
index a45892ca..2ea6826f 100644
--- a/5/plugin/reference/namespaces/bcblog-model-table.html
+++ b/5/plugin/reference/namespaces/bcblog-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-model-validation.html b/5/plugin/reference/namespaces/bcblog-model-validation.html
index f915c4a6..8a50bf34 100644
--- a/5/plugin/reference/namespaces/bcblog-model-validation.html
+++ b/5/plugin/reference/namespaces/bcblog-model-validation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-model.html b/5/plugin/reference/namespaces/bcblog-model.html
index 26c0e5ac..1e2b4399 100644
--- a/5/plugin/reference/namespaces/bcblog-model.html
+++ b/5/plugin/reference/namespaces/bcblog-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-service-admin.html b/5/plugin/reference/namespaces/bcblog-service-admin.html
index cd22409c..e8bbffdf 100644
--- a/5/plugin/reference/namespaces/bcblog-service-admin.html
+++ b/5/plugin/reference/namespaces/bcblog-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-service-front.html b/5/plugin/reference/namespaces/bcblog-service-front.html
index d9a0e676..37ea52f3 100644
--- a/5/plugin/reference/namespaces/bcblog-service-front.html
+++ b/5/plugin/reference/namespaces/bcblog-service-front.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-service.html b/5/plugin/reference/namespaces/bcblog-service.html
index 5bf10024..2a6ce425 100644
--- a/5/plugin/reference/namespaces/bcblog-service.html
+++ b/5/plugin/reference/namespaces/bcblog-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-serviceprovider.html b/5/plugin/reference/namespaces/bcblog-serviceprovider.html
index eb399f25..6ad66b3c 100644
--- a/5/plugin/reference/namespaces/bcblog-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcblog-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-view-helper.html b/5/plugin/reference/namespaces/bcblog-view-helper.html
index 89b6654e..c8a126f6 100644
--- a/5/plugin/reference/namespaces/bcblog-view-helper.html
+++ b/5/plugin/reference/namespaces/bcblog-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog-view.html b/5/plugin/reference/namespaces/bcblog-view.html
index 4ef8f18b..da7da197 100644
--- a/5/plugin/reference/namespaces/bcblog-view.html
+++ b/5/plugin/reference/namespaces/bcblog-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcblog.html b/5/plugin/reference/namespaces/bcblog.html
index 45f70770..7e5eca56 100644
--- a/5/plugin/reference/namespaces/bcblog.html
+++ b/5/plugin/reference/namespaces/bcblog.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-controller-admin.html b/5/plugin/reference/namespaces/bccontentlink-controller-admin.html
index 6a1f20d2..16369b83 100644
--- a/5/plugin/reference/namespaces/bccontentlink-controller-admin.html
+++ b/5/plugin/reference/namespaces/bccontentlink-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-controller-api-admin.html b/5/plugin/reference/namespaces/bccontentlink-controller-api-admin.html
index 1e216307..d46caaee 100644
--- a/5/plugin/reference/namespaces/bccontentlink-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bccontentlink-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-controller-api.html b/5/plugin/reference/namespaces/bccontentlink-controller-api.html
index e769cb36..b475f38e 100644
--- a/5/plugin/reference/namespaces/bccontentlink-controller-api.html
+++ b/5/plugin/reference/namespaces/bccontentlink-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-controller.html b/5/plugin/reference/namespaces/bccontentlink-controller.html
index 6dcf6701..ed5e0edb 100644
--- a/5/plugin/reference/namespaces/bccontentlink-controller.html
+++ b/5/plugin/reference/namespaces/bccontentlink-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-model-entity.html b/5/plugin/reference/namespaces/bccontentlink-model-entity.html
index 84980d36..0338e359 100644
--- a/5/plugin/reference/namespaces/bccontentlink-model-entity.html
+++ b/5/plugin/reference/namespaces/bccontentlink-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-model-table.html b/5/plugin/reference/namespaces/bccontentlink-model-table.html
index 75948236..9dcf3504 100644
--- a/5/plugin/reference/namespaces/bccontentlink-model-table.html
+++ b/5/plugin/reference/namespaces/bccontentlink-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-model.html b/5/plugin/reference/namespaces/bccontentlink-model.html
index c8e04439..d639bf4a 100644
--- a/5/plugin/reference/namespaces/bccontentlink-model.html
+++ b/5/plugin/reference/namespaces/bccontentlink-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-service.html b/5/plugin/reference/namespaces/bccontentlink-service.html
index 6e0ec4d0..39964790 100644
--- a/5/plugin/reference/namespaces/bccontentlink-service.html
+++ b/5/plugin/reference/namespaces/bccontentlink-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink-serviceprovider.html b/5/plugin/reference/namespaces/bccontentlink-serviceprovider.html
index 5dbc0573..8569cfb6 100644
--- a/5/plugin/reference/namespaces/bccontentlink-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bccontentlink-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccontentlink.html b/5/plugin/reference/namespaces/bccontentlink.html
index 15a3c1fa..45aebd0d 100644
--- a/5/plugin/reference/namespaces/bccontentlink.html
+++ b/5/plugin/reference/namespaces/bccontentlink.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-controller-admin.html b/5/plugin/reference/namespaces/bccustomcontent-controller-admin.html
index 3747d2c7..20f8736b 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-controller-admin.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-controller-api-admin.html b/5/plugin/reference/namespaces/bccustomcontent-controller-api-admin.html
index 89bb0c74..39a209d2 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-controller-api.html b/5/plugin/reference/namespaces/bccustomcontent-controller-api.html
index 1008cc27..3216999e 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-controller-api.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-controller.html b/5/plugin/reference/namespaces/bccustomcontent-controller.html
index 9b1fe0a5..3e1a1956 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-controller.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-event.html b/5/plugin/reference/namespaces/bccustomcontent-event.html
index 8135db4f..59a713c5 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-event.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-model-entity.html b/5/plugin/reference/namespaces/bccustomcontent-model-entity.html
index 8968f370..875b02ea 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-model-entity.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-model-table.html b/5/plugin/reference/namespaces/bccustomcontent-model-table.html
index 6071dbc1..9852be74 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-model-table.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-model.html b/5/plugin/reference/namespaces/bccustomcontent-model.html
index 2d9640b0..af5eb081 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-model.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-service-admin.html b/5/plugin/reference/namespaces/bccustomcontent-service-admin.html
index 281a7758..5f060580 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-service-admin.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-service-front.html b/5/plugin/reference/namespaces/bccustomcontent-service-front.html
index 1500c81e..c12d17f8 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-service-front.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-service-front.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-service.html b/5/plugin/reference/namespaces/bccustomcontent-service.html
index 035fd0c5..24059f93 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-service.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-serviceprovider.html b/5/plugin/reference/namespaces/bccustomcontent-serviceprovider.html
index 493acc97..9dc134c1 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-utility.html b/5/plugin/reference/namespaces/bccustomcontent-utility.html
index 9b1f516a..1731b458 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-utility.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-utility.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-view-helper.html b/5/plugin/reference/namespaces/bccustomcontent-view-helper.html
index 797b8b82..5c52ccc6 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-view-helper.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent-view.html b/5/plugin/reference/namespaces/bccustomcontent-view.html
index 05115322..aa44aba3 100644
--- a/5/plugin/reference/namespaces/bccustomcontent-view.html
+++ b/5/plugin/reference/namespaces/bccustomcontent-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bccustomcontent.html b/5/plugin/reference/namespaces/bccustomcontent.html
index 4f3878d0..a54c48af 100644
--- a/5/plugin/reference/namespaces/bccustomcontent.html
+++ b/5/plugin/reference/namespaces/bccustomcontent.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-controller-admin.html b/5/plugin/reference/namespaces/bceditortemplate-controller-admin.html
index db4b3579..ba3674b5 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-controller-admin.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-controller-api-admin.html b/5/plugin/reference/namespaces/bceditortemplate-controller-api-admin.html
index 47c620da..f7d024a5 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-controller-api.html b/5/plugin/reference/namespaces/bceditortemplate-controller-api.html
index 3faf2ede..8dce38e0 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-controller-api.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-controller.html b/5/plugin/reference/namespaces/bceditortemplate-controller.html
index 4e574cdd..f735a0c1 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-controller.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-model-entity.html b/5/plugin/reference/namespaces/bceditortemplate-model-entity.html
index 9dfc6a41..84ab327a 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-model-entity.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-model-table.html b/5/plugin/reference/namespaces/bceditortemplate-model-table.html
index 77b5861b..dae69204 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-model-table.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-model.html b/5/plugin/reference/namespaces/bceditortemplate-model.html
index 10fa30f7..8d6bb8ed 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-model.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-service-admin.html b/5/plugin/reference/namespaces/bceditortemplate-service-admin.html
index 897b3dbf..abc09e3d 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-service-admin.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-service.html b/5/plugin/reference/namespaces/bceditortemplate-service.html
index 7b4fd3a0..308fb0e3 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-service.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate-serviceprovider.html b/5/plugin/reference/namespaces/bceditortemplate-serviceprovider.html
index 4f5e4732..a684c5e9 100644
--- a/5/plugin/reference/namespaces/bceditortemplate-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bceditortemplate-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bceditortemplate.html b/5/plugin/reference/namespaces/bceditortemplate.html
index 467c2fa8..eddcaf3b 100644
--- a/5/plugin/reference/namespaces/bceditortemplate.html
+++ b/5/plugin/reference/namespaces/bceditortemplate.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-controller-api-admin.html b/5/plugin/reference/namespaces/bcfavorite-controller-api-admin.html
index 932c9c8d..c171c150 100644
--- a/5/plugin/reference/namespaces/bcfavorite-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcfavorite-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-controller-api.html b/5/plugin/reference/namespaces/bcfavorite-controller-api.html
index 7db5cae3..abb30399 100644
--- a/5/plugin/reference/namespaces/bcfavorite-controller-api.html
+++ b/5/plugin/reference/namespaces/bcfavorite-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-controller.html b/5/plugin/reference/namespaces/bcfavorite-controller.html
index bf4382af..959656a7 100644
--- a/5/plugin/reference/namespaces/bcfavorite-controller.html
+++ b/5/plugin/reference/namespaces/bcfavorite-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-event.html b/5/plugin/reference/namespaces/bcfavorite-event.html
index 547db901..65ccc315 100644
--- a/5/plugin/reference/namespaces/bcfavorite-event.html
+++ b/5/plugin/reference/namespaces/bcfavorite-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-model-entity.html b/5/plugin/reference/namespaces/bcfavorite-model-entity.html
index 0f20795b..d6fd4c58 100644
--- a/5/plugin/reference/namespaces/bcfavorite-model-entity.html
+++ b/5/plugin/reference/namespaces/bcfavorite-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-model-table.html b/5/plugin/reference/namespaces/bcfavorite-model-table.html
index f99ec7a2..49b47ef9 100644
--- a/5/plugin/reference/namespaces/bcfavorite-model-table.html
+++ b/5/plugin/reference/namespaces/bcfavorite-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-model-validation.html b/5/plugin/reference/namespaces/bcfavorite-model-validation.html
index ec6ecb3e..4db3e212 100644
--- a/5/plugin/reference/namespaces/bcfavorite-model-validation.html
+++ b/5/plugin/reference/namespaces/bcfavorite-model-validation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-model.html b/5/plugin/reference/namespaces/bcfavorite-model.html
index 44cdb599..30a8aad4 100644
--- a/5/plugin/reference/namespaces/bcfavorite-model.html
+++ b/5/plugin/reference/namespaces/bcfavorite-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-service.html b/5/plugin/reference/namespaces/bcfavorite-service.html
index 4f85f9ad..bba5afdf 100644
--- a/5/plugin/reference/namespaces/bcfavorite-service.html
+++ b/5/plugin/reference/namespaces/bcfavorite-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite-serviceprovider.html b/5/plugin/reference/namespaces/bcfavorite-serviceprovider.html
index 73241de1..32474363 100644
--- a/5/plugin/reference/namespaces/bcfavorite-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcfavorite-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfavorite.html b/5/plugin/reference/namespaces/bcfavorite.html
index 02f73c26..4be6d889 100644
--- a/5/plugin/reference/namespaces/bcfavorite.html
+++ b/5/plugin/reference/namespaces/bcfavorite.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcfront.html b/5/plugin/reference/namespaces/bcfront.html
index 3c5a6eba..ce88a397 100644
--- a/5/plugin/reference/namespaces/bcfront.html
+++ b/5/plugin/reference/namespaces/bcfront.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-command.html b/5/plugin/reference/namespaces/bcinstaller-command.html
index 9955f2f7..ed480702 100644
--- a/5/plugin/reference/namespaces/bcinstaller-command.html
+++ b/5/plugin/reference/namespaces/bcinstaller-command.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-controller-admin.html b/5/plugin/reference/namespaces/bcinstaller-controller-admin.html
index 9a148fd7..117727ae 100644
--- a/5/plugin/reference/namespaces/bcinstaller-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcinstaller-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-controller.html b/5/plugin/reference/namespaces/bcinstaller-controller.html
index fae36fa0..7d50cda7 100644
--- a/5/plugin/reference/namespaces/bcinstaller-controller.html
+++ b/5/plugin/reference/namespaces/bcinstaller-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-mailer-admin.html b/5/plugin/reference/namespaces/bcinstaller-mailer-admin.html
index 5a66843c..da0bdaa7 100644
--- a/5/plugin/reference/namespaces/bcinstaller-mailer-admin.html
+++ b/5/plugin/reference/namespaces/bcinstaller-mailer-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-mailer.html b/5/plugin/reference/namespaces/bcinstaller-mailer.html
index fbdc0b6a..c75e316a 100644
--- a/5/plugin/reference/namespaces/bcinstaller-mailer.html
+++ b/5/plugin/reference/namespaces/bcinstaller-mailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-service-admin.html b/5/plugin/reference/namespaces/bcinstaller-service-admin.html
index dfd9a654..a5b2abb0 100644
--- a/5/plugin/reference/namespaces/bcinstaller-service-admin.html
+++ b/5/plugin/reference/namespaces/bcinstaller-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-service.html b/5/plugin/reference/namespaces/bcinstaller-service.html
index 033ae465..08406c1f 100644
--- a/5/plugin/reference/namespaces/bcinstaller-service.html
+++ b/5/plugin/reference/namespaces/bcinstaller-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller-serviceprovider.html b/5/plugin/reference/namespaces/bcinstaller-serviceprovider.html
index d01cc48f..288001ba 100644
--- a/5/plugin/reference/namespaces/bcinstaller-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcinstaller-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcinstaller.html b/5/plugin/reference/namespaces/bcinstaller.html
index c5520cdc..62e689b4 100644
--- a/5/plugin/reference/namespaces/bcinstaller.html
+++ b/5/plugin/reference/namespaces/bcinstaller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-controller-admin.html b/5/plugin/reference/namespaces/bcmail-controller-admin.html
index f2beae4e..b2cee322 100644
--- a/5/plugin/reference/namespaces/bcmail-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcmail-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-controller-api-admin.html b/5/plugin/reference/namespaces/bcmail-controller-api-admin.html
index e6c04fdc..56968a74 100644
--- a/5/plugin/reference/namespaces/bcmail-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcmail-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-controller-api.html b/5/plugin/reference/namespaces/bcmail-controller-api.html
index 3d9704ed..c6d38e5d 100644
--- a/5/plugin/reference/namespaces/bcmail-controller-api.html
+++ b/5/plugin/reference/namespaces/bcmail-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-controller.html b/5/plugin/reference/namespaces/bcmail-controller.html
index 517d56c2..42a044fa 100644
--- a/5/plugin/reference/namespaces/bcmail-controller.html
+++ b/5/plugin/reference/namespaces/bcmail-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-event.html b/5/plugin/reference/namespaces/bcmail-event.html
index a7a6f1aa..15c8a27c 100644
--- a/5/plugin/reference/namespaces/bcmail-event.html
+++ b/5/plugin/reference/namespaces/bcmail-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-mailer.html b/5/plugin/reference/namespaces/bcmail-mailer.html
index 9c2bff10..8c62b2b9 100644
--- a/5/plugin/reference/namespaces/bcmail-mailer.html
+++ b/5/plugin/reference/namespaces/bcmail-mailer.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-model-entity.html b/5/plugin/reference/namespaces/bcmail-model-entity.html
index c4e06314..74d44d5a 100644
--- a/5/plugin/reference/namespaces/bcmail-model-entity.html
+++ b/5/plugin/reference/namespaces/bcmail-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-model-table.html b/5/plugin/reference/namespaces/bcmail-model-table.html
index b5c61e1c..95965685 100644
--- a/5/plugin/reference/namespaces/bcmail-model-table.html
+++ b/5/plugin/reference/namespaces/bcmail-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-model-validation.html b/5/plugin/reference/namespaces/bcmail-model-validation.html
index 4f5022d9..da5c475e 100644
--- a/5/plugin/reference/namespaces/bcmail-model-validation.html
+++ b/5/plugin/reference/namespaces/bcmail-model-validation.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-model.html b/5/plugin/reference/namespaces/bcmail-model.html
index 4bd3bd54..4e0f420e 100644
--- a/5/plugin/reference/namespaces/bcmail-model.html
+++ b/5/plugin/reference/namespaces/bcmail-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-service-admin.html b/5/plugin/reference/namespaces/bcmail-service-admin.html
index b6ba6bda..a22bfce8 100644
--- a/5/plugin/reference/namespaces/bcmail-service-admin.html
+++ b/5/plugin/reference/namespaces/bcmail-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-service-front.html b/5/plugin/reference/namespaces/bcmail-service-front.html
index bf379cf6..3d9a0df6 100644
--- a/5/plugin/reference/namespaces/bcmail-service-front.html
+++ b/5/plugin/reference/namespaces/bcmail-service-front.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-service.html b/5/plugin/reference/namespaces/bcmail-service.html
index 3a887c02..ca42cf45 100644
--- a/5/plugin/reference/namespaces/bcmail-service.html
+++ b/5/plugin/reference/namespaces/bcmail-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-serviceprovider.html b/5/plugin/reference/namespaces/bcmail-serviceprovider.html
index 054521d5..e00b99a6 100644
--- a/5/plugin/reference/namespaces/bcmail-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcmail-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-view-cell.html b/5/plugin/reference/namespaces/bcmail-view-cell.html
index db704647..e3e7fde3 100644
--- a/5/plugin/reference/namespaces/bcmail-view-cell.html
+++ b/5/plugin/reference/namespaces/bcmail-view-cell.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-view-helper.html b/5/plugin/reference/namespaces/bcmail-view-helper.html
index 9ecfddbd..60790eab 100644
--- a/5/plugin/reference/namespaces/bcmail-view-helper.html
+++ b/5/plugin/reference/namespaces/bcmail-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail-view.html b/5/plugin/reference/namespaces/bcmail-view.html
index 55b72231..026a2c20 100644
--- a/5/plugin/reference/namespaces/bcmail-view.html
+++ b/5/plugin/reference/namespaces/bcmail-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcmail.html b/5/plugin/reference/namespaces/bcmail.html
index 71009994..5a68f969 100644
--- a/5/plugin/reference/namespaces/bcmail.html
+++ b/5/plugin/reference/namespaces/bcmail.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-controller-admin.html b/5/plugin/reference/namespaces/bcsearchindex-controller-admin.html
index 92b634b3..049ac003 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-controller-api-admin.html b/5/plugin/reference/namespaces/bcsearchindex-controller-api-admin.html
index be89844e..f2519a5b 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-controller-api.html b/5/plugin/reference/namespaces/bcsearchindex-controller-api.html
index 2fdeb2c9..c83c96c0 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-controller-api.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-controller.html b/5/plugin/reference/namespaces/bcsearchindex-controller.html
index 97bfd8b1..8e5950a8 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-controller.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-form.html b/5/plugin/reference/namespaces/bcsearchindex-form.html
index 8e80e747..ef809e88 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-form.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-form.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-model-behavior.html b/5/plugin/reference/namespaces/bcsearchindex-model-behavior.html
index 1c54ef5c..98fca7ef 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-model-behavior.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-model-behavior.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-model-entity.html b/5/plugin/reference/namespaces/bcsearchindex-model-entity.html
index 3e9678c1..d9cf9042 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-model-entity.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-model-table.html b/5/plugin/reference/namespaces/bcsearchindex-model-table.html
index 299b346e..3e1d37cd 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-model-table.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-model.html b/5/plugin/reference/namespaces/bcsearchindex-model.html
index 6e830635..3686b415 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-model.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-service-admin.html b/5/plugin/reference/namespaces/bcsearchindex-service-admin.html
index 8042aa72..5358acb3 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-service-admin.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-service-front.html b/5/plugin/reference/namespaces/bcsearchindex-service-front.html
index dd0096ba..ffd7698c 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-service-front.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-service-front.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-service.html b/5/plugin/reference/namespaces/bcsearchindex-service.html
index 6ba4b87a..da6acda7 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-service.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-serviceprovider.html b/5/plugin/reference/namespaces/bcsearchindex-serviceprovider.html
index e2200844..06efa02f 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-view-helper.html b/5/plugin/reference/namespaces/bcsearchindex-view-helper.html
index a97da7d5..50fb0637 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-view-helper.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex-view.html b/5/plugin/reference/namespaces/bcsearchindex-view.html
index 718bc391..65351cdc 100644
--- a/5/plugin/reference/namespaces/bcsearchindex-view.html
+++ b/5/plugin/reference/namespaces/bcsearchindex-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcsearchindex.html b/5/plugin/reference/namespaces/bcsearchindex.html
index 9d477b6d..df1410cc 100644
--- a/5/plugin/reference/namespaces/bcsearchindex.html
+++ b/5/plugin/reference/namespaces/bcsearchindex.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-controller-admin.html b/5/plugin/reference/namespaces/bcthemeconfig-controller-admin.html
index 92701eb0..24bc46cf 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-controller-api-admin.html b/5/plugin/reference/namespaces/bcthemeconfig-controller-api-admin.html
index b295b6ff..ce2dfba7 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-controller-api.html b/5/plugin/reference/namespaces/bcthemeconfig-controller-api.html
index 93a0a911..4a14f186 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-controller-api.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-controller.html b/5/plugin/reference/namespaces/bcthemeconfig-controller.html
index 5d225d4c..d71e14ed 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-controller.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-event.html b/5/plugin/reference/namespaces/bcthemeconfig-event.html
index 038e2a06..61052bc2 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-event.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-model-entity.html b/5/plugin/reference/namespaces/bcthemeconfig-model-entity.html
index b07130a2..cd63d329 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-model-entity.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-model-table.html b/5/plugin/reference/namespaces/bcthemeconfig-model-table.html
index 1790abf1..627ef9cd 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-model-table.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-model.html b/5/plugin/reference/namespaces/bcthemeconfig-model.html
index 8558891b..c6b2f661 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-model.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-service-admin.html b/5/plugin/reference/namespaces/bcthemeconfig-service-admin.html
index b6c5cacf..f4f5a9c1 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-service-admin.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-service.html b/5/plugin/reference/namespaces/bcthemeconfig-service.html
index dc50011a..2d6d5c4c 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-service.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-serviceprovider.html b/5/plugin/reference/namespaces/bcthemeconfig-serviceprovider.html
index d2ec40fd..ac19c71e 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-view-helper.html b/5/plugin/reference/namespaces/bcthemeconfig-view-helper.html
index 71893ca4..da89b1fc 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-view-helper.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig-view.html b/5/plugin/reference/namespaces/bcthemeconfig-view.html
index 73c97576..49ec84d6 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig-view.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemeconfig.html b/5/plugin/reference/namespaces/bcthemeconfig.html
index 7d1d623b..8dabcae8 100644
--- a/5/plugin/reference/namespaces/bcthemeconfig.html
+++ b/5/plugin/reference/namespaces/bcthemeconfig.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-controller-admin.html b/5/plugin/reference/namespaces/bcthemefile-controller-admin.html
index bb16917b..2f1f2089 100644
--- a/5/plugin/reference/namespaces/bcthemefile-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcthemefile-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-controller-api-admin.html b/5/plugin/reference/namespaces/bcthemefile-controller-api-admin.html
index e1d5ff53..efd4f128 100644
--- a/5/plugin/reference/namespaces/bcthemefile-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcthemefile-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-controller-api.html b/5/plugin/reference/namespaces/bcthemefile-controller-api.html
index 82ecbfa1..5dbe5b55 100644
--- a/5/plugin/reference/namespaces/bcthemefile-controller-api.html
+++ b/5/plugin/reference/namespaces/bcthemefile-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-controller.html b/5/plugin/reference/namespaces/bcthemefile-controller.html
index 8a77b946..845e9d4a 100644
--- a/5/plugin/reference/namespaces/bcthemefile-controller.html
+++ b/5/plugin/reference/namespaces/bcthemefile-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-form.html b/5/plugin/reference/namespaces/bcthemefile-form.html
index 50117d8d..b7cf0796 100644
--- a/5/plugin/reference/namespaces/bcthemefile-form.html
+++ b/5/plugin/reference/namespaces/bcthemefile-form.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-model-entity.html b/5/plugin/reference/namespaces/bcthemefile-model-entity.html
index 580e62db..94fac5d1 100644
--- a/5/plugin/reference/namespaces/bcthemefile-model-entity.html
+++ b/5/plugin/reference/namespaces/bcthemefile-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-model-table.html b/5/plugin/reference/namespaces/bcthemefile-model-table.html
index e6d26dcc..970ba6f7 100644
--- a/5/plugin/reference/namespaces/bcthemefile-model-table.html
+++ b/5/plugin/reference/namespaces/bcthemefile-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-model.html b/5/plugin/reference/namespaces/bcthemefile-model.html
index 49144041..a9742327 100644
--- a/5/plugin/reference/namespaces/bcthemefile-model.html
+++ b/5/plugin/reference/namespaces/bcthemefile-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-service-admin.html b/5/plugin/reference/namespaces/bcthemefile-service-admin.html
index 0ece7304..91941b45 100644
--- a/5/plugin/reference/namespaces/bcthemefile-service-admin.html
+++ b/5/plugin/reference/namespaces/bcthemefile-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-service.html b/5/plugin/reference/namespaces/bcthemefile-service.html
index f252c6ac..0a81b968 100644
--- a/5/plugin/reference/namespaces/bcthemefile-service.html
+++ b/5/plugin/reference/namespaces/bcthemefile-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-serviceprovider.html b/5/plugin/reference/namespaces/bcthemefile-serviceprovider.html
index 94af42fd..db1e34fb 100644
--- a/5/plugin/reference/namespaces/bcthemefile-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcthemefile-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile-utility.html b/5/plugin/reference/namespaces/bcthemefile-utility.html
index db13e4ed..5dbba710 100644
--- a/5/plugin/reference/namespaces/bcthemefile-utility.html
+++ b/5/plugin/reference/namespaces/bcthemefile-utility.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcthemefile.html b/5/plugin/reference/namespaces/bcthemefile.html
index 254f9ae5..94457c61 100644
--- a/5/plugin/reference/namespaces/bcthemefile.html
+++ b/5/plugin/reference/namespaces/bcthemefile.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-controller-admin.html b/5/plugin/reference/namespaces/bcuploader-controller-admin.html
index 40db0513..15479147 100644
--- a/5/plugin/reference/namespaces/bcuploader-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcuploader-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-controller-api-admin.html b/5/plugin/reference/namespaces/bcuploader-controller-api-admin.html
index f1ff1e1b..92336b96 100644
--- a/5/plugin/reference/namespaces/bcuploader-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcuploader-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-controller-api.html b/5/plugin/reference/namespaces/bcuploader-controller-api.html
index 9b226e86..0299accb 100644
--- a/5/plugin/reference/namespaces/bcuploader-controller-api.html
+++ b/5/plugin/reference/namespaces/bcuploader-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-controller.html b/5/plugin/reference/namespaces/bcuploader-controller.html
index 30d7f906..b346c1bd 100644
--- a/5/plugin/reference/namespaces/bcuploader-controller.html
+++ b/5/plugin/reference/namespaces/bcuploader-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-event.html b/5/plugin/reference/namespaces/bcuploader-event.html
index e2155b21..30dbd654 100644
--- a/5/plugin/reference/namespaces/bcuploader-event.html
+++ b/5/plugin/reference/namespaces/bcuploader-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-model-entity.html b/5/plugin/reference/namespaces/bcuploader-model-entity.html
index 1396b0cb..65ffb7c3 100644
--- a/5/plugin/reference/namespaces/bcuploader-model-entity.html
+++ b/5/plugin/reference/namespaces/bcuploader-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-model-table.html b/5/plugin/reference/namespaces/bcuploader-model-table.html
index 16070a3c..4c772eef 100644
--- a/5/plugin/reference/namespaces/bcuploader-model-table.html
+++ b/5/plugin/reference/namespaces/bcuploader-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-model.html b/5/plugin/reference/namespaces/bcuploader-model.html
index 477b84fc..aa236d8c 100644
--- a/5/plugin/reference/namespaces/bcuploader-model.html
+++ b/5/plugin/reference/namespaces/bcuploader-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-service-admin.html b/5/plugin/reference/namespaces/bcuploader-service-admin.html
index a3c8ae01..73ce3e5e 100644
--- a/5/plugin/reference/namespaces/bcuploader-service-admin.html
+++ b/5/plugin/reference/namespaces/bcuploader-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-service.html b/5/plugin/reference/namespaces/bcuploader-service.html
index e104e80f..1aa6d900 100644
--- a/5/plugin/reference/namespaces/bcuploader-service.html
+++ b/5/plugin/reference/namespaces/bcuploader-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-serviceprovider.html b/5/plugin/reference/namespaces/bcuploader-serviceprovider.html
index 58133e42..1fa032ee 100644
--- a/5/plugin/reference/namespaces/bcuploader-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcuploader-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-view-helper.html b/5/plugin/reference/namespaces/bcuploader-view-helper.html
index 4eedb444..b312d866 100644
--- a/5/plugin/reference/namespaces/bcuploader-view-helper.html
+++ b/5/plugin/reference/namespaces/bcuploader-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader-view.html b/5/plugin/reference/namespaces/bcuploader-view.html
index 5be2ce1e..f8e9b3a0 100644
--- a/5/plugin/reference/namespaces/bcuploader-view.html
+++ b/5/plugin/reference/namespaces/bcuploader-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcuploader.html b/5/plugin/reference/namespaces/bcuploader.html
index f2a0d21d..117326d4 100644
--- a/5/plugin/reference/namespaces/bcuploader.html
+++ b/5/plugin/reference/namespaces/bcuploader.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-controller-admin.html b/5/plugin/reference/namespaces/bcwidgetarea-controller-admin.html
index 0b0b3813..6fe4ddce 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-controller-admin.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-controller-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-controller-api-admin.html b/5/plugin/reference/namespaces/bcwidgetarea-controller-api-admin.html
index 4a914823..bba07469 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-controller-api-admin.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-controller-api-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-controller-api.html b/5/plugin/reference/namespaces/bcwidgetarea-controller-api.html
index f416163f..67c76118 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-controller-api.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-controller-api.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-controller.html b/5/plugin/reference/namespaces/bcwidgetarea-controller.html
index 1fc1d7b2..daf23690 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-controller.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-controller.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-event.html b/5/plugin/reference/namespaces/bcwidgetarea-event.html
index bb056c11..3c8f70bf 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-event.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-event.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-model-entity.html b/5/plugin/reference/namespaces/bcwidgetarea-model-entity.html
index a3f60732..48d44cfe 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-model-entity.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-model-entity.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-model-table.html b/5/plugin/reference/namespaces/bcwidgetarea-model-table.html
index dc572ca1..af3910f2 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-model-table.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-model-table.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-model.html b/5/plugin/reference/namespaces/bcwidgetarea-model.html
index db94b2c2..55d2caf8 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-model.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-model.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-service-admin.html b/5/plugin/reference/namespaces/bcwidgetarea-service-admin.html
index 7dab9520..05cef427 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-service-admin.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-service-admin.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-service.html b/5/plugin/reference/namespaces/bcwidgetarea-service.html
index 527d5af4..62856b59 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-service.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-service.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-serviceprovider.html b/5/plugin/reference/namespaces/bcwidgetarea-serviceprovider.html
index 00ed3fec..6039b593 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-serviceprovider.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-serviceprovider.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-view-helper.html b/5/plugin/reference/namespaces/bcwidgetarea-view-helper.html
index b3b25555..9917f791 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-view-helper.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-view-helper.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea-view.html b/5/plugin/reference/namespaces/bcwidgetarea-view.html
index 37b13605..a29346b5 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea-view.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea-view.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/bcwidgetarea.html b/5/plugin/reference/namespaces/bcwidgetarea.html
index acb15f79..1f539e60 100644
--- a/5/plugin/reference/namespaces/bcwidgetarea.html
+++ b/5/plugin/reference/namespaces/bcwidgetarea.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/cake-routing.html b/5/plugin/reference/namespaces/cake-routing.html
index 3fe12f58..fc251937 100644
--- a/5/plugin/reference/namespaces/cake-routing.html
+++ b/5/plugin/reference/namespaces/cake-routing.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/cake.html b/5/plugin/reference/namespaces/cake.html
index ba679bb9..5d758451 100644
--- a/5/plugin/reference/namespaces/cake.html
+++ b/5/plugin/reference/namespaces/cake.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/namespaces/default.html b/5/plugin/reference/namespaces/default.html
index 558cf6f4..c77ad2ae 100644
--- a/5/plugin/reference/namespaces/default.html
+++ b/5/plugin/reference/namespaces/default.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/packages/Application.html b/5/plugin/reference/packages/Application.html
index e3502d04..7858da07 100644
--- a/5/plugin/reference/packages/Application.html
+++ b/5/plugin/reference/packages/Application.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
@@ -545,7 +549,7 @@
- BcAdminAppServiceInterface Interface BcAdminAppServiceInterface BcAdminContentsServiceInterface BcAdminContentsServiceInterface ContentFoldersAdminServiceInterface Interface ContentFoldersAdminServiceInterface ContentsAdminServiceInterface ContentsAdminServiceInterface DashboardAdminServiceInterface DashboardAdminServiceInterface PagesAdminServiceInterface PagesAdminServiceInterface PermissionGroupsAdminServiceInterface PermissionGroupsAdminServiceInterface PermissionsAdminServiceInterface PermissionsAdminServiceInterface PluginsAdminServiceInterface PluginsAdminServiceInterface SiteConfigsAdminServiceInterface SiteConfigsAdminServiceInterface SitesAdminServiceInterface SitesAdminServiceInterface ThemesAdminServiceInterface ThemesAdminServiceInterface UsersAdminServiceInterface Interface UsersAdminServiceInterface UtilitiesAdminServiceInterface UtilitiesAdminServiceInterface AppServiceInterface AppServiceInterface BcCaptchaServiceInterface interface BcCaptchaServiceInterface BcDatabaseServiceInterface BcDatabaseServiceInterface BcOfficialApiServiceInterface interface BcOfficialApiServiceInterface ContentFoldersServiceInterface Interface ContentFoldersServiceInterface ContentsServiceInterface Interface ContentsServiceInterface CrudBaseServiceInterface Interface CrudBaseServiceInterface DblogsServiceInterface Interface DblogsServiceInterface BcFrontContentsServiceInterface BcFrontContentsService ContentFoldersFrontServiceInterface ContentFoldersFrontServiceInterface PagesFrontServiceInterface PagesFrontServiceInterface PagesServiceInterface Interface PagesServiceInterface PasswordRequestsServiceInterface PasswordRequestsServiceInterface PermissionGroupsServiceInterface PermissionGroupsServiceInterface PermissionsServiceInterface Interface PermissionsServiceInterface PluginsServiceInterface Interface PluginsServiceInterface PreviewServiceInterface PreviewServiceInterface SiteConfigsServiceInterface Interface SiteConfigsServiceInterface SitesServiceInterface SitesServiceInterface ThemesServiceInterface ThemesServiceInterface UserGroupsServiceInterface Interface UserGroupsServiceInterface UsersServiceInterface Interface UsersServiceInterface UtilitiesServiceInterface UtilitiesServiceInterface BcPluginBaserHelperInterface BcPluginBaserHelperInterface BlogCategoriesAdminServiceInterface BlogCategoriesAdminServiceInterface BlogCommentsAdminServiceInterface BlogCommentsAdminServiceInterface BlogContentsAdminServiceInterface BlogContentsAdminServiceInterface BlogPostsAdminServiceInterface BlogPostsAdminServiceInterface BlogCategoriesServiceInterface BlogCategoriesServiceInterface BlogCommentsServiceInterface BlogCommentsServiceInterface BlogContentsServiceInterface BlogContentsServiceInterface BlogPostsServiceInterface BlogPostsServiceInterface BlogTagsServiceInterface BlogTagsServiceInterface BlogFrontServiceInterface BlogFrontServiceInterface ContentLinksServiceInterface ContentLinksServiceInterface CustomContentsAdminServiceInterface CustomContentsAdminServiceInterface CustomEntriesAdminServiceInterface CustomEntriesAdminServiceInterface CustomFieldsAdminServiceInterface CustomFieldsAdminServiceInterface CustomLinksAdminServiceInterface CustomLinksAdminServiceInterface CustomTablesAdminServiceInterface CustomTablesAdminServiceInterface CustomContentsServiceInterface CustomContentsServiceInterface CustomEntriesServiceInterface CustomEntriesServiceInterface CustomFieldsServiceInterface CustomFieldsServiceInterface CustomLinksServiceInterface CustomLinksServiceInterface CustomTablesServiceInterface CustomTablesServiceInterface CustomContentFrontServiceInterface EditorTemplatesAdminServiceInterface EditorTemplatesAdminServiceInterface EditorTemplatesServiceInterface EditorTemplatesServiceInterface FavoritesServiceInterface FavoritesServiceInterface InstallationsAdminServiceInterface InstallationsAdminServiceInterface InstallationsServiceInterface InstallationsServiceInterface MailConfigsAdminServiceInterface MailConfigsAdminServiceInterface MailContentsAdminServiceInterface MailContentsAdminServiceInterface MailFieldsAdminServiceInterface MailFieldsAdminServiceInterface MailMessagesAdminServiceInterface MailMessagesAdminServiceInterface MailFrontServiceInterface MailFrontServiceInterface MailConfigsServiceInterface MailConfigsServiceInterface MailContentsServiceInterface MailContentsServiceInterface MailFieldsServiceInterface MailFieldsServiceInterface MailMessagesServiceInterface MailMessagesServiceInterface SearchIndexesAdminServiceInterface Interface SearchIndexesAdminServiceInterface SearchIndexesFrontServiceInterface Interface SearchIndexesFrontServiceInterface SearchIndexesServiceInterface Interface SearchIndexesServiceInterface ThemeConfigsAdminServiceInterface ThemeConfigsAdminServiceInterface ThemeConfigsServiceInterface ThemeConfigsServiceInterface ThemeFilesAdminServiceInterface ThemeFilesAdminServiceInterface ThemeFoldersAdminServiceInterface ThemeFoldersAdminServiceInterface BcThemeFileServiceInterface BcThemeFileServiceInterface ThemeFilesServiceInterface ThemeFilesServiceInterface ThemeFoldersServiceInterface ThemeFoldersServiceInterface UploaderConfigsAdminServiceInterface UploaderConfigsAdminServiceInterface UploaderFilesAdminServiceInterface UploaderFilesAdminServiceInterface UploaderCategoriesServiceInterface UploaderCategoriesServiceInterface UploaderConfigsServiceInterface UploaderConfigsServiceInterface UploaderFilesServiceInterface UploaderFilesServiceInterface WidgetAreasAdminServiceInterface WidgetAreasAdminServiceInterface WidgetAreasServiceInterface WidgetAreasServiceInterface
+ BcAdminAppServiceInterface Interface BcAdminAppServiceInterface BcAdminContentsServiceInterface BcAdminContentsServiceInterface ContentFoldersAdminServiceInterface Interface ContentFoldersAdminServiceInterface ContentsAdminServiceInterface ContentsAdminServiceInterface DashboardAdminServiceInterface DashboardAdminServiceInterface PagesAdminServiceInterface PagesAdminServiceInterface PermissionGroupsAdminServiceInterface PermissionGroupsAdminServiceInterface PermissionsAdminServiceInterface PermissionsAdminServiceInterface PluginsAdminServiceInterface PluginsAdminServiceInterface SiteConfigsAdminServiceInterface SiteConfigsAdminServiceInterface SitesAdminServiceInterface SitesAdminServiceInterface ThemesAdminServiceInterface ThemesAdminServiceInterface UsersAdminServiceInterface Interface UsersAdminServiceInterface UtilitiesAdminServiceInterface UtilitiesAdminServiceInterface AppServiceInterface AppServiceInterface BcCaptchaServiceInterface interface BcCaptchaServiceInterface BcDatabaseServiceInterface BcDatabaseServiceInterface BcOfficialApiServiceInterface interface BcOfficialApiServiceInterface ContentFoldersServiceInterface Interface ContentFoldersServiceInterface ContentsServiceInterface Interface ContentsServiceInterface CrudBaseServiceInterface Interface CrudBaseServiceInterface DblogsServiceInterface Interface DblogsServiceInterface BcFrontContentsServiceInterface BcFrontContentsService ContentFoldersFrontServiceInterface ContentFoldersFrontServiceInterface PagesFrontServiceInterface PagesFrontServiceInterface PagesServiceInterface Interface PagesServiceInterface PasswordRequestsServiceInterface PasswordRequestsServiceInterface PermissionGroupsServiceInterface PermissionGroupsServiceInterface PermissionsServiceInterface Interface PermissionsServiceInterface PluginsServiceInterface Interface PluginsServiceInterface PreviewServiceInterface PreviewServiceInterface SiteConfigsServiceInterface Interface SiteConfigsServiceInterface SitesServiceInterface SitesServiceInterface ThemesServiceInterface ThemesServiceInterface TwoFactorAuthenticationsServiceInterface Interface TwoFactorAuthenticationsServiceInterface UserGroupsServiceInterface Interface UserGroupsServiceInterface UsersServiceInterface Interface UsersServiceInterface UtilitiesServiceInterface UtilitiesServiceInterface BcPluginBaserHelperInterface BcPluginBaserHelperInterface BlogCategoriesAdminServiceInterface BlogCategoriesAdminServiceInterface BlogCommentsAdminServiceInterface BlogCommentsAdminServiceInterface BlogContentsAdminServiceInterface BlogContentsAdminServiceInterface BlogPostsAdminServiceInterface BlogPostsAdminServiceInterface BlogCategoriesServiceInterface BlogCategoriesServiceInterface BlogCommentsServiceInterface BlogCommentsServiceInterface BlogContentsServiceInterface BlogContentsServiceInterface BlogPostsServiceInterface BlogPostsServiceInterface BlogTagsServiceInterface BlogTagsServiceInterface BlogFrontServiceInterface BlogFrontServiceInterface ContentLinksServiceInterface ContentLinksServiceInterface CustomContentsAdminServiceInterface CustomContentsAdminServiceInterface CustomEntriesAdminServiceInterface CustomEntriesAdminServiceInterface CustomFieldsAdminServiceInterface CustomFieldsAdminServiceInterface CustomLinksAdminServiceInterface CustomLinksAdminServiceInterface CustomTablesAdminServiceInterface CustomTablesAdminServiceInterface CustomContentsServiceInterface CustomContentsServiceInterface CustomEntriesServiceInterface CustomEntriesServiceInterface CustomFieldsServiceInterface CustomFieldsServiceInterface CustomLinksServiceInterface CustomLinksServiceInterface CustomTablesServiceInterface CustomTablesServiceInterface CustomContentFrontServiceInterface EditorTemplatesAdminServiceInterface EditorTemplatesAdminServiceInterface EditorTemplatesServiceInterface EditorTemplatesServiceInterface FavoritesServiceInterface FavoritesServiceInterface InstallationsAdminServiceInterface InstallationsAdminServiceInterface InstallationsServiceInterface InstallationsServiceInterface MailConfigsAdminServiceInterface MailConfigsAdminServiceInterface MailContentsAdminServiceInterface MailContentsAdminServiceInterface MailFieldsAdminServiceInterface MailFieldsAdminServiceInterface MailMessagesAdminServiceInterface MailMessagesAdminServiceInterface MailFrontServiceInterface MailFrontServiceInterface MailConfigsServiceInterface MailConfigsServiceInterface MailContentsServiceInterface MailContentsServiceInterface MailFieldsServiceInterface MailFieldsServiceInterface MailMessagesServiceInterface MailMessagesServiceInterface SearchIndexesAdminServiceInterface Interface SearchIndexesAdminServiceInterface SearchIndexesFrontServiceInterface Interface SearchIndexesFrontServiceInterface SearchIndexesServiceInterface Interface SearchIndexesServiceInterface ThemeConfigsAdminServiceInterface ThemeConfigsAdminServiceInterface ThemeConfigsServiceInterface ThemeConfigsServiceInterface ThemeFilesAdminServiceInterface ThemeFilesAdminServiceInterface ThemeFoldersAdminServiceInterface ThemeFoldersAdminServiceInterface BcThemeFileServiceInterface BcThemeFileServiceInterface ThemeFilesServiceInterface ThemeFilesServiceInterface ThemeFoldersServiceInterface ThemeFoldersServiceInterface UploaderConfigsAdminServiceInterface UploaderConfigsAdminServiceInterface UploaderFilesAdminServiceInterface UploaderFilesAdminServiceInterface UploaderCategoriesServiceInterface UploaderCategoriesServiceInterface UploaderConfigsServiceInterface UploaderConfigsServiceInterface UploaderFilesServiceInterface UploaderFilesServiceInterface WidgetAreasAdminServiceInterface WidgetAreasAdminServiceInterface WidgetAreasServiceInterface WidgetAreasServiceInterface
Classes
@@ -554,7 +558,7 @@
Checked Class Checked Doc Class Doc Note Class UnitTest NoTodo Class NoTodo UnitTest Class UnitTest BaserCorePlugin Class plugin BcPlugin Class plugin ComposerCommand ComposerCommand CreateReleaseCommand CreateReleaseCommand SetupInstallCommand SetupInstallCommand SetupTestCommand SetupTestCommand UpdateCommand UpdateCommand BcAdminAppController Class BcAdminAppController ContentFoldersController Class ContentFoldersController ContentsController Class ContentsController DashboardController Class DashboardController DblogsController Class DblogsController PagesController PagesController PasswordRequestsController Class PasswordRequestsController PermissionGroupsController PermissionGroupsController PermissionsController Class PermissionsController PluginsController Class PluginsController PreviewController Class BcAdminAppController SiteConfigsController Class SiteConfigsController SitesController Class SitesController ThemesController Class ThemesController UpdatersController Class UpdatersController UserGroupsController Class UserGroupsController UsersController Class UsersController UtilitiesController Class UtilitiesController AnalyseController Class AnalyseController BcAdminApiController BcAdminApiController ContentFoldersController Class ContentFoldersController ContentsController Class ContentsController DblogsController Class DblogsController JwksController Class JwksController PagesController Class PagesController PermissionGroupsController Class PermissionGroupsController PermissionsController Class PermissionsController PluginsController Class PluginsController SiteConfigsController SiteConfigsController SitesController Class SitesController ThemesController Class ThemesController UserGroupsController Class UserGroupsController UsersController Class UsersController UtilitiesController Class UtilitiesController BcApiController Class BcApiController ContentFoldersController Class ContentFoldersController ContentsController Class ContentsController PagesController Class PagesController AppController Class AppController BcErrorController BcErrorController BcFormController Class BcFormController BcFrontAppController BcFrontAppController BcAdminContentsComponent Class BcContentsComponent BcFrontContentsComponent Class BcContentsComponent BcMessageComponent Class BcMessageComponent
-表示面へのメッセージをコントロールする為のコンポーネント ContentFoldersController Class ContentFoldersController MaintenanceController メンテナンスコントローラー PagesController PagesController PasswordRequestsController Class PasswordRequestsController UploadsController アップロードコントローラー UsersController UsersController BcMigration BcMigration BcSeed BcSeed BcSchema BcSchema BcException Class BcException BcExceptionRenderer BcExceptionRenderer BcFormFailedException BcFormFailedException BcContainerEventListener Class BcContainerEventListener BcContentsEventListener Class BcContentsEventListener BcControllerEventDispatcher Class BcControllerEventDispatcher BcControllerEventListener Class BcControllerEventListener BcEventDispatcher Class BcEventDispatcher BcEventListener Class BcEventListener BcHelperEventListener Class BcHelperEventListener BcMailerEventListener Class BcMailerEventListener BcModelEventDispatcher Class BcModelEventDispatcher BcModelEventListener Class BcModelEventListener BcShortCodeEventListener Class BcShortCodeEventListener BcViewEventDispatcher Class BcViewEventDispatcher BcViewEventListener Class BcViewEventListener ContentsSearchForm ContentsSearchForm PrefixOrmResolver PrefixOrmResolver BcAdminMailer BcAdminMailer PasswordRequestMailer Class PasswordRequestMailer BcMailer Class BcMailer BcAdminMiddleware BcAdminMiddleware BcFrontMiddleware BcFrontMiddleware BcRedirectMainSiteMiddleware Class BcRedirectMainSiteMiddleware BcRedirectSubSiteMiddleware Class BcRedirectSubSiteMiddleware BcRequestFilterMiddleware BcRequestFilterMiddleware BcContentsBehavior Class BcContentsBehavior BcKeyValueBehavior Class BcKeyValueBehavior BcUploadBehavior Class BcUploadBehavior Content Content ContentFolder ContentFolder Dblog Class Dblog Page Class Page PasswordRequest Class PasswordRequest Permission Class Permission PermissionGroup アクセスグループエンティティ Plugin Class Plugin Site Class Site SiteConfig Class SiteConfig User Class User UserGroup Class UserGroup AppTable Class AppTable ContentFoldersTable Class ContentFoldersTable ContentsTable Class ContentsTable DblogsTable Class AppTable CopyFailedException Class CopyFailedException LoginStoresTable Class LoginStoresTable PagesTable Class PagesTable PasswordRequestsTable Class UsersTable PermissionGroupsTable Class AppTable PermissionsTable Class PermissionTable PluginsTable Class PluginsTable SiteConfigsTable Class SiteConfig SitesTable Class Site UserGroupsTable Class UserGroupsTable UsersTable Class UsersTable UsersUserGroupsTable Class UsersUserGroupsTable BcValidation Class BcValidation PageValidation Class PageValidation SiteConfigValidation Class SiteConfigValidation SiteValidation Class SiteValidation UserValidation Class UserValidation Asset Class for generating asset URLs. BcContentsRoute Class BcContentsRoute BcAdminAppService BcAdminAppService BcAdminContentsService BcAdminContentsService ContentFoldersAdminService ContentFoldersAdminService ContentsAdminService ContentsAdminService DashboardAdminService DashboardAdminService PagesAdminService PagesAdminService PermissionGroupsAdminService PermissionGroupsAdminService PermissionsAdminService PermissionsAdminService PluginsAdminService PluginsAdminService SiteConfigsAdminService SiteConfigsAdminService SitesAdminService SitesAdminService ThemesAdminService ThemesAdminService UsersAdminService UsersAdminService UtilitiesAdminService UtilitiesAdminService AppService AppService BcCaptchaService Class BcCaptchaService BcDatabaseService BcOfficialApiService interface BcOfficialApiService ContentFoldersService Class ContentFoldersService ContentsService Class ContentsService DblogsService Class DblogsService BcFrontContentsService BcFrontContentsService ContentFoldersFrontService ContentFoldersFrontService PagesFrontService PagesFrontService PagesService Class PagesService PasswordRequestsService PasswordRequestsService PermissionGroupsService PermissionGroupsService PermissionsService Class PermissionsService PluginsService Class PluginsService SiteConfigsService Class SiteConfigsMockService SitesService Class SitesService ThemesService ThemesService UserGroupsService Class UserGroupsService UsersService Class UsersService UtilitiesService UtilitiesService BcServiceProvider Class BcServiceProvider BcEventListenerMock Class BcEventListenerMock BcTestCase Class BcTestCase BcAbstractDetector Class BcAbstractDetector BcAgent Class BcAgent BcApiUtil BcApiUtil BcComposer BcComposer BcContainer Class BcContainer BcEvent イベントユーティリティ BcFile BcFileUploader Class BcFileUploader BcFolder Class BcFolder BcGmaps Class BcGmaps BcLang Class BcLang BcPluginUtil Class BcPluginUtil BcSiteConfig BcSiteConfig BcText Class BcText BcUpdateLog BcUpdateLog BcUtil Class BcUtil BcZip Class BcZip CKEditorStyleParser CSSを解析してCKEditorのスタイルセット用のデータ構造に変換する Imageresizer Imagereizer KCAPTCHA AppView Class AppView BcAdminAppView Class BcAdminAppView BcFrontAppView BcFrontAppView BcFrontEmailView BcFrontAppView BaserCoreBaserHelper BaserCoreBaserHelper BcAdminFormHelper Class BcAdminFormHelper BcAdminHelper Class BcAdminHelper BcArrayHelper BcArrayHelper BcAuthHelper Class BcAuthHelper BcBaserHelper Class BcBaserHelper BcCkeditorHelper Class BcCkeditorHelper BcContentsHelper コンテンツヘルパ BcCsvHelper CSVヘルパー BcFormHelper FormHelper 拡張クラス BcFormTableHelper Class BcFormTableHelper BcFreezeHelper Class BcFreezeHelper BcGoogleMapsHelper GoogleMapヘルパー BcHtmlHelper Htmlヘルパーの拡張クラス BcLayoutHelper レイアウトヘルパ BcListTableHelper Class BcListTableHelper BcPageHelper BcPageHelper BcSearchBoxHelper 検索ボックスヘルパ
+表示面へのメッセージをコントロールする為のコンポーネント ContentFoldersController Class ContentFoldersController MaintenanceController メンテナンスコントローラー PagesController PagesController PasswordRequestsController Class PasswordRequestsController UploadsController アップロードコントローラー UsersController UsersController BcMigration BcMigration BcSeed BcSeed BcSchema BcSchema BcException Class BcException BcExceptionRenderer BcExceptionRenderer BcFormFailedException BcFormFailedException MissingColumnException MissingColumnException BcAuthenticationEventListener Class BcAuthenticationEventListener BcContainerEventListener Class BcContainerEventListener BcContentsEventListener Class BcContentsEventListener BcControllerEventDispatcher Class BcControllerEventDispatcher BcControllerEventListener Class BcControllerEventListener BcEventDispatcher Class BcEventDispatcher BcEventListener Class BcEventListener BcHelperEventListener Class BcHelperEventListener BcMailerEventListener Class BcMailerEventListener BcModelEventDispatcher Class BcModelEventDispatcher BcModelEventListener Class BcModelEventListener BcShortCodeEventListener Class BcShortCodeEventListener BcViewEventDispatcher Class BcViewEventDispatcher BcViewEventListener Class BcViewEventListener ContentsSearchForm ContentsSearchForm PrefixOrmResolver PrefixOrmResolver BcAdminMailer BcAdminMailer PasswordRequestMailer Class PasswordRequestMailer BcMailer Class BcMailer TwoFactorAuthenticationMailer Class TwoFactorAuthenticationMailer BcAdminMiddleware BcAdminMiddleware BcFrontMiddleware BcFrontMiddleware BcRedirectMainSiteMiddleware Class BcRedirectMainSiteMiddleware BcRedirectSubSiteMiddleware Class BcRedirectSubSiteMiddleware BcRequestFilterMiddleware BcRequestFilterMiddleware BcContentsBehavior Class BcContentsBehavior BcKeyValueBehavior Class BcKeyValueBehavior BcUploadBehavior Class BcUploadBehavior Content Content ContentFolder ContentFolder Dblog Class Dblog Page Class Page PasswordRequest Class PasswordRequest Permission Class Permission PermissionGroup アクセスグループエンティティ Plugin Class Plugin Site Class Site SiteConfig Class SiteConfig User Class User UserGroup Class UserGroup AppTable Class AppTable ContentFoldersTable Class ContentFoldersTable ContentsTable Class ContentsTable DblogsTable Class AppTable CopyFailedException Class CopyFailedException LoginStoresTable Class LoginStoresTable PagesTable Class PagesTable PasswordRequestsTable Class UsersTable PermissionGroupsTable Class AppTable PermissionsTable Class PermissionTable PluginsTable Class PluginsTable SiteConfigsTable Class SiteConfig SitesTable Class Site TwoFactorAuthenticationsTable Class TwoFactorAuthenticationsTable UserGroupsTable Class UserGroupsTable UsersTable Class UsersTable UsersUserGroupsTable Class UsersUserGroupsTable BcValidation Class BcValidation PageValidation Class PageValidation SiteValidation Class SiteValidation UserValidation Class UserValidation SelectQuery Soft delete-aware query Asset Class for generating asset URLs. BcContentsRoute Class BcContentsRoute BcAdminAppService BcAdminAppService BcAdminContentsService BcAdminContentsService ContentFoldersAdminService ContentFoldersAdminService ContentsAdminService ContentsAdminService DashboardAdminService DashboardAdminService PagesAdminService PagesAdminService PermissionGroupsAdminService PermissionGroupsAdminService PermissionsAdminService PermissionsAdminService PluginsAdminService PluginsAdminService SiteConfigsAdminService SiteConfigsAdminService SitesAdminService SitesAdminService ThemesAdminService ThemesAdminService UsersAdminService UsersAdminService UtilitiesAdminService UtilitiesAdminService AppService AppService BcCaptchaService Class BcCaptchaService BcDatabaseService BcOfficialApiService interface BcOfficialApiService ContentFoldersService Class ContentFoldersService ContentsService Class ContentsService DblogsService Class DblogsService BcFrontContentsService BcFrontContentsService ContentFoldersFrontService ContentFoldersFrontService PagesFrontService PagesFrontService PagesService Class PagesService PasswordRequestsService PasswordRequestsService PermissionGroupsService PermissionGroupsService PermissionsService Class PermissionsService PluginsService Class PluginsService SiteConfigsService Class SiteConfigsMockService SitesService Class SitesService ThemesService ThemesService TwoFactorAuthenticationsService Class TwoFactorAuthenticationsService UserGroupsService Class UserGroupsService UsersService Class UsersService UtilitiesService UtilitiesService BcServiceProvider Class BcServiceProvider BcEventListenerMock Class BcEventListenerMock BcTestCase Class BcTestCase BcAbstractDetector Class BcAbstractDetector BcAgent Class BcAgent BcApiUtil BcApiUtil BcComposer BcComposer BcContainer Class BcContainer BcEvent イベントユーティリティ BcFile BcFileUploader Class BcFileUploader BcFolder Class BcFolder BcGmaps Class BcGmaps BcLang Class BcLang BcPluginUtil Class BcPluginUtil BcSiteConfig BcSiteConfig BcText Class BcText BcUpdateLog BcUpdateLog BcUtil Class BcUtil BcZip Class BcZip CKEditorStyleParser CSSを解析してCKEditorのスタイルセット用のデータ構造に変換する Imageresizer Imagereizer KCAPTCHA AppView Class AppView BcAdminAppView Class BcAdminAppView BcFrontAppView BcFrontAppView BcFrontEmailView BcFrontAppView BaserCoreBaserHelper BaserCoreBaserHelper BcAdminFormHelper Class BcAdminFormHelper BcAdminHelper Class BcAdminHelper BcArrayHelper BcArrayHelper BcAuthHelper Class BcAuthHelper BcBaserHelper Class BcBaserHelper BcCkeditorHelper Class BcCkeditorHelper BcContentsHelper コンテンツヘルパ BcCsvHelper CSVヘルパー BcFormHelper FormHelper 拡張クラス BcFormTableHelper Class BcFormTableHelper BcFreezeHelper Class BcFreezeHelper BcGoogleMapsHelper GoogleMapヘルパー BcHtmlHelper Htmlヘルパーの拡張クラス BcLayoutHelper レイアウトヘルパ BcListTableHelper Class BcListTableHelper BcPageHelper BcPageHelper BcSearchBoxHelper 検索ボックスヘルパ
Class BcSearchBoxHelper BcSiteConfigHelper BcSiteConfigHelper BcSmartphoneHelper スマホヘルパー BcTextHelper Class BcTextHelper BcTimeHelper Class BcTimeHelper BcToolbarHelper BcToolbarHelper BcUploadHelper アップロードヘルパー BcXmlHelper XMLヘルパー拡張 BcAdminThirdPlugin Class Plugin BcBlogPlugin plugin for BcBlog BlogAdminAppController BlogAdminAppController BlogCategoriesController カテゴリコントローラー BlogCommentsController ブログコメントコントローラー BlogContentsController ブログコンテンツコントローラー BlogPostsController ブログ記事コントローラー BlogTagsController ブログタグコントローラー BlogCategoriesController BlogCategoriesController BlogCommentsController BlogCommentsController BlogContentsController BlogContentsController BlogPostsController BlogPostsController BlogTagsController BlogTagsController BlogCategoriesController BlogCategoriesController BlogCommentsController BlogCommentsController BlogContentsController BlogContentsController BlogPostsController BlogPostsController BlogTagsController BlogTagsController BlogController ブログ記事コントローラー BlogFrontAppController ブログコントローラー基底クラス BcBlogViewEventListener BcBlogViewEventListener BlogCommentMailer BlogCommentMailer BlogCategory Class BlogCategory BlogComment Class BlogComment BlogContent Class BlogContent BlogPost Class BlogPost BlogTag Class BlogTag BlogAppTable ブログモデル基底クラス BlogCategoriesTable BlogCategoriesTable BlogCommentsTable ブログコメントモデル BlogContentsTable ブログコンテンツモデル BlogPostsBlogTagsTable ブログタグリンクモデル BlogPostsTable 記事モデル BlogTagsTable ブログタグモデル BlogCategoryValidation Class BlogCategoryValidation BlogContentValidation Class BlogContentValidation BlogCategoriesAdminService BlogCategoriesAdminService BlogCommentsAdminService BlogCommentsAdminService BlogContentsAdminService BlogContentsAdminService BlogPostsAdminService BlogContentsAdminService BlogCategoriesService BlogCategoriesService BlogCommentsService BlogCommentsService BlogContentsService BlogContentsService BlogPostsService BlogPostsService BlogTagsService BlogTagsService BlogFrontService BlogFrontService BcBlogServiceProvider Class BcBlogServiceProvider BlogAdminAppView Class BlogAdminAppView BlogFrontAppView Class BlogAppView BcBlogBaserHelper BlogBaserヘルパー BlogHelper ブログヘルパー RssHelper RSS Helper class for easy output RSS structures. BcContentLinkPlugin plugin for BcPlugin ContentLinksController Class ContentLinksController ContentLinksController Class ContentLinksController ContentLinksController Class ContentLinksController ContentLinksController Class ContentLinksController ContentLink Class ContentLink ContentLinksTable Class ContentLinksTable ContentLinksService ContentLinksService BcContentLinkServiceProvider Class BcContentLinkServiceProvider BcCustomContentPlugin plugin for BcCustomContent CustomContentAdminAppController CustomContentAdminAppController CustomContentsController CustomContentsController CustomEntriesController CustomEntriesController CustomFieldsController CustomFieldsController CustomLinksController CustomLinksController CustomTablesController CustomTablesController CustomContentsController CustomContentsController CustomEntriesController CustomEntriesController CustomFieldsController CustomFieldsController CustomLinksController CustomLinksController CustomTablesController CustomTablesController CustomContentsController CustomContentsController CustomEntriesController CustomEntriesController CustomLinksController CustomLinksController CustomContentController CustomContentController CustomContentFrontAppController CustomContentFrontAppController BcCustomContentControllerEventListener BcCustomContentViewEventListener CustomContent CustomContent CustomEntry CustomEntry CustomField CustomField CustomLink CustomLink CustomTable CustomTable CustomContentsTable CustomContentsTable CustomEntriesTable CustomEntriesTable CustomFieldsTable CustomFieldsTable CustomLinksTable CustomLinksTable CustomTablesTable CustomTablesTable CustomContentsAdminService CustomContentsAdminService CustomEntriesAdminService CustomEntriesAdminService CustomFieldsAdminService CustomFieldsAdminService CustomLinksAdminService CustomLinksAdminService CustomTablesAdminService CustomTablesAdminService CustomContentsService CustomContentsService CustomEntriesService CustomEntriesService CustomFieldsService CustomFieldsService CustomLinksService CustomLinksService CustomTablesService CustomTablesService CustomContentFrontService CustomContentFrontService BcCustomContentServiceProvider Class BcCustomContentServiceProvider CustomContentUtil CustomContentUtil CustomContentAdminAppView Class CustomContentAdminAppView CustomContentFrontAppView Class CustomContentFrontAppView BcCustomContentBaserHelper MailBaserHelper CustomContentAdminHelper CustomContentAdminHelper CustomContentAppHelper CustomContentAppHelper CustomContentHelper CustomContentHelper BcEditorTemplatePlugin Class Plugin EditorTemplatesController Class EditorTemplatesController EditorTemplatesController Class EditorTemplatesController EditorTemplate Class EditorTemplate EditorTemplatesTable Class EditorTemplate EditorTemplatesAdminService EditorTemplatesAdminService EditorTemplatesService EditorTemplatesService BcEditorTemplateServiceProvider Class BcEditorTemplateServiceProvider BcFavoritePlugin plugin for BcFavorite FavoritesController Class FavoritesController BcFavoriteViewEventListener BcFavoriteViewEventListener Favorite Class Favorite FavoritesTable Class FavoritesTable FavoriteValidation Class BcValidation FavoritesService FavoritesService BcFavoriteServiceProvider Class BcFavoriteServiceProvider BcFrontPlugin plugin for BcFront BcInstallerPlugin Class Plugin InstallCheckCommand InstallCheckCommand InstallCommand InstallCommand InstallationsController Class InstallationsController InstallerMailer Class InstallerMailer InstallationsAdminService InstallationsAdminService InstallationsService InstallationsService BcInstallerServiceProvider Class BcEditorTemplateServiceProvider BcMailPlugin plugin for BcMail MailAdminAppController MailAdminAppController MailConfigsController メールフォーム設定コントローラー MailContentsController メールコンテンツコントローラー MailFieldsController メールフィールドコントローラー MailMessagesController 受信メールコントローラー MailContentsController メールコンテンツコントローラー MailFieldsController メールフィールドコントローラー MailMessagesController メールフィールドコントローラー MailContentsController メールコンテンツコントローラー MailFieldsController メールフィールドコントローラー MailMessagesController メールフィールドコントローラー MailController お問い合わせメールフォーム用コントローラー MailFrontAppController メールコントローラー基底クラス BcMailViewEventListener BcMailViewEventListener MailMessageMailer MailMessageMailer MailConfig Class MailConfig MailContent Class MailContent MailField Class MailField MailMessage Class MailMessage MailAppTable メールプラグインモデル根底クラス MailConfigsTable メール設定モデル MailContentsTable メールコンテンツモデル MailFieldsTable メールフィールドモデル MailMessagesTable メッセージモデル MailMessageValidation Class MailMessageValidation MailConfigsAdminService MailConfigsAdminService MailContentsAdminService MailContentsAdminService MailFieldsAdminService MailFieldsService MailMessagesAdminService MailMessagesAdminService MailFrontService MailFrontService MailConfigsService MailConfigsService MailContentsService MailContentsService MailFieldsService MailFieldsService MailMessagesService MailMessagesService BcMailServiceProvider Class BcMailServiceProvider MailCell MailCell BcMailBaserHelper MailBaserHelper MaildataHelper メールデータヘルパー MailfieldHelper メールフィールドヘルパー MailformHelper メールフォームヘルパー MailHelper メールヘルパー MailAdminAppView Class MailAdminAppView MailFrontAppView Class MailFrontAppView MailFrontEmailView Class MailFrontAppView BcSearchIndexPlugin Class Plugin SearchIndexesController Class SearchIndexesController SearchIndexesController SearchIndicesController SearchIndexesController SearchIndicesController SearchIndexesController SearchIndexesController SearchIndexesFrontForm SearchIndexesFrontForm SearchIndexesSearchForm SearchIndexesSearchForm BcSearchIndexManagerBehavior Class BcSearchIndexManagerBehavior SearchIndex Class SearchIndex SearchIndexesTable SearchIndexesTable SearchIndexesAdminService SearchIndexesAdminService SearchIndexesFrontService SearchIndexesFrontService SearchIndexesService Class SearchIndexesService BcSearchIndexServiceProvider Class BcSearchIndexServiceProvider BcSearchIndexHelper Class BcSearchIndexHelper BcThemeConfigPlugin Class Plugin ThemeConfigsController Class ThemeConfigsController ThemeConfigsController Class ThemeConfigsController BcThemeConfigControllerEventListener Class BcThemeConfigControllerEventListener ThemeConfig Class ThemeConfig ThemeConfigsTable Class ThemeConfig ThemeConfigsAdminService ThemeConfigsSAdminervice ThemeConfigsService ThemeConfigsService BcThemeConfigServiceProvider Class BcThemeConfigServiceProvider BcThemeConfigBaserHelper BcThemeConfigBaserHelper BcThemeConfigHelper BcThemeConfigHelper BcThemeFilePlugin Class Plugin ThemeFilesController Class ThemeFilesController ThemeFilesController テーマファイルコントローラー ThemeFoldersController テーマフォルダコントローラー ThemeFileForm ThemeFileForm ThemeFolderForm ThemeFolderForm ThemeFile ThemeFile ThemeFolder ThemeFolder ThemeFilesTable Class ThemeFile ThemeFoldersTable Class ThemeFolder ThemeFilesAdminService ThemeFilesAdminService ThemeFoldersAdminService ThemeFoldersAdminService BcThemeFileService BcThemeFileService ThemeFilesService ThemeFilesService ThemeFoldersService ThemeFoldersService BcThemeFileServiceProvider Class BcThemeFileServiceProvider BcThemeFileUtil BcThemeFileUtil BcUploaderPlugin plugin for BcUploader UploaderCategoriesController アップロードカテゴリコントローラー UploaderConfigsController ファイルアップローダーコントローラー UploaderFilesController ファイルアップローダーコントローラー UploaderCategoriesController アップロードカテゴリコントローラー UploaderConfigsController アップローダープラグイン UploaderFilesController アップロードファイルコントローラー UploaderFilesController ファイルアップローダーコントローラー BcUploaderViewEventListener UploaderViewEventListener UploaderCategory Class UploaderCategory UploaderConfig Class UploaderConfig UploaderFile Class UploaderFile UploaderCategoriesTable ファイルカテゴリモデル UploaderConfigsTable ファイルアップローダー設定モデル UploaderFilesTable ファイルアップローダーモデル UploaderConfigsAdminService UploaderConfigsAdminService UploaderFilesAdminService UploaderFilesAdminService UploaderCategoriesService UploadCategoriesService UploaderConfigsService UploaderConfigsService UploaderFilesService UploaderFilesService BcUploaderServiceProvider Class BcUploaderServiceProvider UploaderHelper アップローダーヘルパー BcWidgetAreaPlugin Class Plugin WidgetAreasController Class WidgetAreasController WidgetAreasController Class WidgetAreasController BcWidgetAreaControllerEventListener BcWidgetAreaControllerEventListener BcWidgetAreaHelperEventListener BcWidgetAreaControllerEventListener WidgetArea WidgetArea WidgetAreasTable Class WidgetArea WidgetAreasAdminService WidgetAreasAdminService WidgetAreasService WidgetAreasService BcWidgetAreaServiceProvider Class BcWidgetAreaServiceProvider BcWidgetAreaBaserHelper BcWidgetAreaBaserHelper BcWidgetAreaHelper ウィジェットエリアヘルパー
@@ -563,7 +567,7 @@
- BcEventDispatcherTrait BcContainerTrait Trait BcContainerTrait CustomContentArrayTrait CustomContentArrayTrait
+ BcEventDispatcherTrait SoftDeleteTrait SoftDeleteTrait BcContainerTrait Trait BcContainerTrait CustomContentArrayTrait CustomContentArrayTrait
diff --git a/5/plugin/reference/packages/default.html b/5/plugin/reference/packages/default.html
index 6c7d74e1..b6c1879f 100644
--- a/5/plugin/reference/packages/default.html
+++ b/5/plugin/reference/packages/default.html
@@ -103,6 +103,10 @@
Model
+
+
+ ORM
+
Routing
diff --git a/5/plugin/reference/reports/deprecated.html b/5/plugin/reference/reports/deprecated.html
index 46e53424..ff30a581 100644
--- a/5/plugin/reference/reports/deprecated.html
+++ b/5/plugin/reference/reports/deprecated.html
@@ -104,6 +104,10 @@
Model
+
+
+ ORM
+
Routing
@@ -538,7 +542,10 @@ Table of Contents
plugins/baser-core/src/Controller/AppController.php
- plugins/baser-core/src/TestSuite/BcTestCase.php
+ plugins/baser-core/src/Utility/BcFile.php
+
+
+ plugins/baser-core/src/Utility/BcFolder.php
plugins/baser-core/src/Utility/BcUtil.php
@@ -560,8 +567,8 @@ AppControl
-
- BcTestCase.php
+
+ BcFile.php
+
+ BcFolder.php
+
@@ -598,7 +606,7 @@ BcUtil.php Reason
- 2222
+ 2243
BcUtil::is51()
remove 5.1.0 このメソッドは非推奨です。
diff --git a/5/plugin/reference/reports/errors.html b/5/plugin/reference/reports/errors.html
index a041cff4..49d7b379 100644
--- a/5/plugin/reference/reports/errors.html
+++ b/5/plugin/reference/reports/errors.html
@@ -104,6 +104,10 @@
Model
+
+
+ ORM
+
Routing
@@ -666,7 +670,7 @@ BcUtil.php
ERROR
- 857
+ 862
Tag "@return" with body "@@return []|array" has error
@@ -684,7 +688,7 @@ BcCont
ERROR
- 785
+ 792
Tag "@return" with body "@@return @return void コンテンツナビが無効かつオプションoverFolderがtrueでない場合はfalseを出力する" has error
diff --git a/5/plugin/reference/reports/markers.html b/5/plugin/reference/reports/markers.html
index 9b467a59..690c6996 100644
--- a/5/plugin/reference/reports/markers.html
+++ b/5/plugin/reference/reports/markers.html
@@ -104,6 +104,10 @@
Model
+
+
+ ORM
+
Routing
@@ -565,10 +569,6 @@ Table of Contents
plugins/baser-core/src/View/Helper/BcFreezeHelper.php
1
-
-
- plugins/bc-blog/src/Controller/BlogController.php
- 1
plugins/bc-blog/src/Model/Table/BlogContentsTable.php
@@ -659,7 +659,7 @@ ContentsT
TODO
- 285
+ 284
ucmitz 代替措置
@@ -677,7 +677,7 @@ ContentsSer
TODO
- 676
+ 677
ucmitz キャッシュ系が有効化されてからsoftDeleteFromTreeを使用する
@@ -713,7 +713,7 @@ BcUtil.php
TODO
- 85
+ 90
windows で ai ファイルをアップロードをした場合、headerがpdfとして出力されるのでコメントアウト
@@ -731,7 +731,7 @@ BcBaserHe
TODO
- 1020
+ 1023
HTMLレンダリングも含めた状態で取得できる、HtmlHelper::getCrumbs() とメソッド名が
同じで、 処理内容がわかりにくいので変数名のリファクタリング要。
ただし、BcBaserHelper::getCrumbs() は、テーマで利用されている可能性が高いので、
@@ -739,12 +739,12 @@ BcBaserHe
TODO
- 1753
+ 1777
TextHelperに移行を検討
TODO
- 2503
+ 2533
ucmitz 未実装
@@ -785,28 +785,10 @@ BcFreeze
TODO
- 224
+ 227
値の出力はBcTextにまとめた方がよいかも
-
-
- BlogController.php
-
-
-
- Type
- Line
- Description
-
-
-
-
- TODO
- 69
- ブログコメントの送信でエラーとなるため、一時的に無効化している
-
-
BlogContentsTable.php
@@ -821,7 +803,7 @@ BlogCont
TODO
- 285
+ 287
ucmitz 未実装
@@ -839,7 +821,7 @@ BlogPostsTa
TODO
- 771
+ 777
ucmitz 未実装
@@ -857,7 +839,7 @@ BlogPostsServ
TODO
- 184
+ 188
ucmitz 未実装
@@ -875,7 +857,7 @@ TODO
- 85
+ 88
ucmitz label をプラグインに移行する
@@ -934,7 +916,7 @@ MailControll
TODO
- 126
+ 118
ucmitz 未実装
@@ -952,7 +934,7 @@ MailCont
TODO
- 351
+ 330
ucmitz 未実装
@@ -970,12 +952,12 @@ MailMess
TODO
- 294
+ 296
ucmitz 未検証
TODO
- 626
+ 628
ucmitz 以下、未検証
@@ -1011,22 +993,22 @@ MailHelper.php<
TODO
- 99
+ 100
他のヘルパーに移動する
TODO
- 129
+ 130
他のヘルパに移動する
TODO
- 287
+ 291
ucmitz 未実装
TODO
- 291
+ 295
ucmitz 未検証
@@ -1044,7 +1026,7 @@ Them
TODO
- 294
+ 289
ucmitz 未検証
@@ -1080,7 +1062,7 @@ Uploade
TODO
- 140
+ 145
エンティティに移動する