Property | Type | Description | |
---|---|---|---|
$initialized | |||
$initializedPlugin | |||
$instance | |||
$testMode |
Method | Description | |
---|---|---|
__clone ( ) | ||
__construct ( array $values = [] ) | ||
clearInstance ( ) | ||
getInstance ( array $values = [] ) | ||
getPluginConfigAll ( ) : array | すべてのプラグインの設定情報を返す. | |
getPluginConfigCacheFile ( ) : string | プラグイン設定情報のキャッシュファイルパスを返す. | |
initConfig ( ) | ||
initDoctrine ( ) | ||
initLocale ( ) | ||
initLogger ( ) | ||
initMailer ( ) | ||
initPluginEventDispatcher ( ) | ||
initRendering ( ) | ||
initSecurity ( ) | ||
initSession ( ) | ||
initialize ( ) | ||
initializePlugin ( ) | ||
isBooted ( ) : boolean | Application::runが実行されているか親クラスのプロパティから判定 | |
isTestMode ( ) : boolean | PHPUnit を実行中かどうか. | |
loadPlugin ( ) | ||
parseConfig ( string $config_name, array &$configAll, boolean $wrap_key = false, string $ymlPath = null, string $distPath = null ) : |
Config ファイルをパースし、連想配列を返します. | |
parsePluginConfigs ( ) : array | プラグイン設定情報をパースし, 連想配列で返す. | |
removePluginConfigCache ( ) : boolean | プラグイン設定情報のキャッシュファイルを削除する. | |
setTestMode ( boolean $testMode ) | PHPUnit を実行中かどうかを設定する. | |
writePluginConfigCache ( string $cacheFile = null ) : integer | boolean | プラグイン設定情報のキャッシュを書き込む. |
Method | Description | |
---|---|---|
checkDatabaseConnection ( ) : boolean | データベースの接続を確認 成功 : trueを返却 失敗 : \Doctrine\DBAL\DBALExceptionエラーが発生( 接続に失敗した場合 )、エラー画面を表示しdie() 備考 : app['debug']がtrueの際は処理を行わない | |
initCacheRequest ( ) | Http Cache対応 | |
isSessionStarted ( ) : boolean | セッションが開始されているかどうか. |
protected checkDatabaseConnection ( ) : boolean | ||
return | boolean | true |
public getPluginConfigAll ( ) : array | ||
return | array |
public getPluginConfigCacheFile ( ) : string | ||
return | string |
protected isSessionStarted ( ) : boolean | ||
return | boolean | セッションが開始済みの場合 true |
public isTestMode ( ) : boolean | ||
return | boolean | PHPUnit を実行中の場合 true |
public parseConfig ( string $config_name, array &$configAll, boolean $wrap_key = false, string $ymlPath = null, string $distPath = null ) : |
||
$config_name | string | Config 名称 |
$configAll | array | Config の連想配列 |
$wrap_key | boolean | Config の連想配列に config_name のキーを生成する場合 true, デフォルト false |
$ymlPath | string | config yaml を格納したディレクトリ |
$distPath | string | config yaml dist を格納したディレクトリ |
return |
public parsePluginConfigs ( ) : array | ||
return | array |
public removePluginConfigCache ( ) : boolean | ||
return | boolean |
public setTestMode ( boolean $testMode ) | ||
$testMode | boolean | PHPUnit を実行中の場合 true |