定数

Fuel はグローバル名前空間に 4 つの定数があります。これらは重要なディレクトリを示しています。Fuel は内部的にこれらを使用し、クラスや他のファイルを位置づけています。 これらの定数は public/index.php で設定されています。

注意: Fuel の主要フォルダ (app, core, public, packages) を移動している場合、index.php で正しいパスを指定していることを確認してください。

キー 内容
APPPATH アプリケーションディレクトリへのパス (/path/to/fuel/app). これはアプリケーションディレクトリやコードを置く場所です。
COREPATH コアディレクトリへのパス (/path/to/fuel/core). これはすべての Fuel クラスがある場所です。
DOCROOT セットアップスクリプトのパスは公開ディレクトリにしてください (/path/to/public) This is where index.php resides. Everything accessible to user lives and is accessible via the browser. For oil command, path to where oil command resides.
PKGPATH パッケージディレクトリへのパス (/path/to/fuel/packages). これはパッケージがインストールされる場所です。 (oil を使用してインストールされた場合).

Note: When you use the Oil package, you have to make the same changes in the 'oil' file in the docroot of your website.

Note: When you want to run unit tests, you have to make the same changes in the 'phpunit.xml' file in the fuelphp core folder.