forked from NEKOGET/FuelPHP_docs_jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.html
121 lines (110 loc) · 4.4 KB
/
constants.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./../assets/css/combined.css">
<link rel="shortcut icon" href="./../favicon.ico" />
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
var path = './../';
</script>
<script src="./../assets/js/combined.js"></script>
<title>定数 - 概要 - FuelPHP ドキュメント</title>
</head>
<body>
<div id="container">
<header id="header">
<div class="table">
<h1>
<a href="http://fuelphp.com"><img height="37px" width="147px" src="./../assets/img/fuel.png" /></a>
<strong>Documentation</strong>
</h1>
<form id="google_search">
<p>
<span id="search_clear"> </span>
<input type="submit" name="search_submit" id="search_submit" value="検索" />
<input type="text" value="" id="search_input" name="search_input" />
</p>
</form>
</div>
<nav>
<div class="clear"></div>
</nav>
<a href="#" id="toc_handle">目次</a>
<div class="clear"></div>
</header>
<div id="cse">
<div id="cse_point"></div>
<div id="cse_content"></div>
</div>
<div id="main">
<h2>定数</h2>
<p>
Fuel はグローバル名前空間に 4 つの定数があります。これらは重要なディレクトリを示しています。Fuel は内部的にこれらを使用し、クラスや他のファイルを位置づけています。
これらの定数は <em>public/index.php</em> で設定されています。
</p>
<p class="note">
<strong>注意:</strong> Fuel の主要フォルダ (app, core, public, packages) を移動している場合、index.php で正しいパスを指定していることを確認してください。
</p>
<table class="config valign">
<tbody>
<tr class="header">
<th>キー</th>
<th>内容</th>
</tr>
<tr>
<th>APPPATH</th>
<td>
アプリケーションディレクトリへのパス (<em>/path/to/fuel/app</em>).
これはアプリケーションディレクトリやコードを置く場所です。
</td>
</tr>
<tr>
<th>COREPATH</th>
<td>
コアディレクトリへのパス (<em>/path/to/fuel/core</em>).
これはすべての Fuel クラスがある場所です。
</td>
</tr>
<tr>
<th>DOCROOT</th>
<td>
起動スクリプトのパス。
アプリケーションでは、パブリックディレクトリのパス (<em>/path/to/public</em>) で、
index.php が配置されます。このパス以下の全てのファイルはユーザが確認でき、ブラウザ経由でアクセス可能です。
oil コマンドでは、oil コマンドが配置されるパスになります。
</td>
</tr>
<tr>
<th>PKGPATH</th>
<td>
パッケージが配置されるパス (<em>/path/to/fuel/packages</em>)。
ここにはあなたのパッケージがインストールされます(oil でインストールされた場合)。
</td>
</tr>
<tr>
<th>VENDORPATH</th>
<td>
Composer のルートディレクトリ (<em>/path/to/fuel/vendor</em>)。
packagist.org からダウンロードされたライブラリが Composer でインストールされる場所です。
</td>
</tr>
</tbody>
</table>
<p class="note">
<strong>注意:</strong> Oil パッケージを使う場合、Web サイトの docroot にある 'oil' ファイルに同じ変更を加える必要があります。
</p>
<p class="note">
<strong>注意:</strong> ユニットテストを実行する場合、fuelphp の core フォルダにある 'phpunit.xml' ファイルに同じ変更を加える必要があります。
</p>
</div>
<footer>
<p>
© FuelPHP Development Team 2010-2016 - <a href="http://fuelphp.com">FuelPHP</a> is released under the MIT license.
[ <a href="https://github.com/fuel/docs/commits/1.8/develop/general/constants.html">原文コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/commits/1.8/develop_japanese/general/constants.html">翻訳コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/blob/1.8/develop_japanese/general/constants.html">GitHubで修正</a> ]
</p>
</footer>
</div>
</body>
</html>