Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
d74c6f0f
Commit
d74c6f0f
authored
Jan 27, 2015
by
Nobuo Kihara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs/guide-ja updated [ci skip]
parent
6f12a143
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
14 deletions
+14
-14
input-validation.md
docs/guide-ja/input-validation.md
+1
-1
runtime-routing.md
docs/guide-ja/runtime-routing.md
+8
-8
start-installation.md
docs/guide-ja/start-installation.md
+1
-1
tutorial-advanced-app.md
docs/guide-ja/tutorial-advanced-app.md
+1
-1
tutorial-start-from-scratch.md
docs/guide-ja/tutorial-start-from-scratch.md
+1
-1
tutorial-yii-integration.md
docs/guide-ja/tutorial-yii-integration.md
+2
-2
No files found.
docs/guide-ja/input-validation.md
View file @
d74c6f0f
...
...
@@ -289,7 +289,7 @@ Yii のリリースに含まれている [コアバリデータ](tutorial-core-v
```
php
/**
* @param string $attribute 現在検証されている属性
* @param
array $params 規則に与えられる追加の「名前-値」のペア
* @param
mixed $params 規則に与えられる "params" の値
*/
function
(
$attribute
,
$params
)
```
...
...
docs/guide-ja/runtime-routing.md
View file @
d74c6f0f
...
...
@@ -315,26 +315,26 @@ URL 隕丞援縺ッ縲√ヱ繧ソ繝シ繝ウ縺ョ荳ュ縺ァ `<ParamName:RgExp>` 縺ョ蠖「蠑上〒謖ョ壹&
```php
[
'posts/<year:\d{4}>/<category>' => 'post/index',
'posts' => 'post/index',
'post/<id:\d+>' => 'post/view',
'posts/<year:\d{4}>/<category>' => 'post/index',
]
```
規則が URL 解析に使われる場合は、
- `
/index.php/posts
` は、最
初の規則
を使って解析され、ルート `
post/index
` になります。
- `
/index.php/posts/2014/php
` は、三
番目の規則を使っ
て解析され、ルートは `
post/index
`、`
year
` パラメータの値は 2014、そして、`
category
` パラメータの値は `
php
` となります。
- `
/index.php/post/100
` は、二番
目の
規則を使って解析され、ルートが `
post/view
`、`
id
` パラメータの値が 100 となります。
- `
/index.php/posts
` は、二
番目の規則を使っ
て解析され、ルート `
post/index
` になります。
- `
/index.php/posts/2014/php
` は、最
初の規則
を使って解析され、ルートは `
post/index
`、`
year
` パラメータの値は 2014、そして、`
category
` パラメータの値は `
php
` となります。
- `
/index.php/post/100
` は、三番
目の
規則を使って解析され、ルートが `
post/view
`、`
id
` パラメータの値が 100 となります。
- `
/index.php/posts/php
` は、どのパターンにも合致しないため、[[yii\web\UrlManager::enableStrictParsing]] が true の場合は、[[yii\web\NotFoundHttpException]] を引き起こします。
[[yii\web\UrlManager::enableStrictParsing]] が false (これが既定値です) の場合は、パス情報の部分である `
posts/php
` がルートとして返されることになります。
規則が URL 生成に使われる場合は、
- `
Url::to(
[
'post/index'
]
)
` は、最
初の規則
を使って、`
/index.php/posts
` を生成します。
- `
Url::to(
[
'post/index', 'year' => 2014, 'category' => 'php'
]
)
` は、三
番目の規則を使っ
て、`
/index.php/posts/2014/php
` を生成します。
- `
Url::to(
[
'post/view', 'id' => 100
]
)
` は、二番
目の
規則を使って、`
/index.php/post/100
` を生成します。
- `
Url::to(
[
'post/view', 'id' => 100, 'source' => 'ad'
]
)
` も、二
番目
の規則を使って、`
/index.php/post/100?source=ad
` を生成します。
- `
Url::to(
[
'post/index'
]
)
` は、二
番目の規則を使っ
て、`
/index.php/posts
` を生成します。
- `
Url::to(
[
'post/index', 'year' => 2014, 'category' => 'php'
]
)
` は、最
初の規則
を使って、`
/index.php/posts/2014/php
` を生成します。
- `
Url::to(
[
'post/view', 'id' => 100
]
)
` は、三番
目の
規則を使って、`
/index.php/post/100
` を生成します。
- `
Url::to(
[
'post/view', 'id' => 100, 'source' => 'ad'
]
)
` も、三
番目
の規則を使って、`
/index.php/post/100?source=ad
` を生成します。
`
source
` パラメータは規則の中で指定されていないので、クエリパラメータとして、生成される URL に追加されます。
- `
Url::to(
[
'post/index', 'category' => 'php'
]
)
` は、どの規則も使わずに、`
/index.php/post/index?category=php
` を生成します。
どの規則も当てはまらないため、URL は、単純に、ルートをパス情報とし、すべてのパラメータをクエリ文字列として追加して生成されます。
...
...
docs/guide-ja/start-installation.md
View file @
d74c6f0f
...
...
@@ -36,7 +36,7 @@ Composer 縺ッ `composer self-update` 繧ウ繝槭Φ繝峨r螳溯。後@縺ヲ繧「繝繝繝
Composer がインストールされたら、ウェブからアクセスできるフォルダで下記のコマンドを実行することによって Yii をインストールすることが出来ます。
composer global require "fxp/composer-asset-plugin:1.0.0
-beta4
"
composer global require "fxp/composer-asset-plugin:1.0.0"
composer create-project --prefer-dist yiisoft/yii2-app-basic basic
最初のコマンドは
[
composer アセットプラグイン
](
https://github.com/francoispluchino/composer-asset-plugin/
)
をインストールします。
...
...
docs/guide-ja/tutorial-advanced-app.md
View file @
d74c6f0f
...
...
@@ -34,7 +34,7 @@
Composer がインストールされていれば、次のコマンドを使ってアプリケーションをインストールすることが出来ます。
composer global require "fxp/composer-asset-plugin:1.0.0
-beta4
"
composer global require "fxp/composer-asset-plugin:1.0.0"
composer create-project --prefer-dist yiisoft/yii2-app-advanced yii-application
最初のコマンドは
[
composer asset plugin
](
https://github.com/francoispluchino/composer-asset-plugin/
)
をインストールします。
...
...
docs/guide-ja/tutorial-start-from-scratch.md
View file @
d74c6f0f
...
...
@@ -54,6 +54,6 @@ Yii の新しいアプリケーションテンプレートを作成するのに
これで、あなたのテンプレートを使ってプロジェクトを作成することが出来ます。
```
composer global require "fxp/composer-asset-plugin:1.0.0
-beta4
"
composer global require "fxp/composer-asset-plugin:1.0.0"
composer create-project --prefer-dist --stability=dev mysoft/yii2-app-coolone new-project
```
docs/guide-ja/tutorial-yii-integration.md
View file @
d74c6f0f
...
...
@@ -77,8 +77,8 @@ Yii は数多くの優れた機能を提供していますので、サードパ
サードパーティのシステムが Composer を使って依存を管理している場合は、単に下記のコマンドを実行すれば Yii をインストールすることが出来ます。
composer global require "fxp/composer-asset-plugin:1.0.0
-beta4
"
composer require
"yiisoft/yii2:*"
composer global require "fxp/composer-asset-plugin:1.0.0"
composer require
yiisoft/yii2
composer install
最初のコマンドは
[
composer アセットプラグイン
](
https://github.com/francoispluchino/composer-asset-plugin/
)
をインストールします。
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment