forked from NEKOGET/FuelPHP_docs_jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (87 loc) · 4.46 KB
/
index.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
<!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>
<strong>FuelPHP, a PHP 5.3 Framework</strong>
Documentation
</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>FuelPHP へようこそ</h2>
<p>
FuelPHP はシンプルで、フレキシブルな、コミュニティにより開発されている PHP 5 用の Web フレームワークです。現在のフレームワークに対する不満から産まれ、開発者のコミュニティからサポート、支持されています。
FuelPHP はとても移植性が高く、多くのサーバで動き、そして、とても綺麗な構文のフレームワークです。
</p>
<h3 id="quick_install">クイックインストール</h3>
<p>もしあなたが今すぐに Fuel を試したいと思うなら、高速インストーラを使ってみてください。<a href="http://ja.wikipedia.org/wiki/CURL">curl</a> ライブラリを使用し、oil の必要最小限のバージョンをインストールできます。それから、Fuel の新しい完全なアプリケーションを作成できます。</p>
<pre class="cli"><code># oil を Web からクイックインストールします
$ curl get.fuelphp.com/oil | sh
# oil が、たった今、インストールされました。Sites ディレクトリで blog プロジェクトを作ります
$ cd Sites/
$ oil create blog</code></pre>
<p>
詳細は、<a href="installation/instructions.html#command">インストール方法</a> のページをご覧ください。
</p>
<h3 id="manual_install">手動インストール</h3>
<p>
クイックインストールが使えない場合は、手動で FuelPHP をインストールできます。
詳細な手順は、<a href="installation/instructions.html#manual">インストール方法</a> のページにあります。
</p>
<h3 id="next_steps">次のステップ</h3>
<ul>
<li>ステップ #1: FuelPHP アプリケーションの <a href="general/mvc.html">コンポーネント</a> について読む</li>
<li>ステップ #2: 新しくインストールした FuelPHP の<a href="general/configuration.html">設定をする</a></li>
<li>ステップ #3: <a href="general/modules.html">モジュール</a> と <a href="general/packages.html">パッケージ</a> について学習する</li>
<li>ステップ #4: <a href="general/controllers/base.html">セクシーなコードを作成する!</a></li>
</ul>
<h3 id="api_docs">クラス API ドキュメント</h3>
<p>
私たちは、すべてのクラスの完全な API ドキュメントをオンラインで提供します。
</p>
<h3 id="dev_docs">開発ブランチのドキュメント</h3>
<p>
このドキュメントは、最新の公式リリースの FuelPHP を反映しています。
開発最先端の Fuel のドキュメントは <a href="http://www.fuelphp.com/dev-docs/index.html">開発ブランチのドキュメント</a> をご覧ください。
</p>
</div>
<footer>
<p>
© FuelPHP Development Team 2010-2013 - <a href="http://fuelphp.com">FuelPHP</a> is released under the MIT license.
[ <a href="https://github.com/fuel/docs/commits/1.5/develop/index.html">原文コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/commits/1.5/develop_japanese/index.html">翻訳コミット履歴</a> | <a href="https://github.com/NEKOGET/FuelPHP_docs_jp/blob/1.5/develop_japanese/index.html">GitHubで修正</a> ]
</p>
</footer>
</div>
</body>
</html>