{JA} - 3.5.2.4.6 action

$this->params['action']

リクエストを扱っている現在のアクション名が入ります。例えば、 /posts/view/1 がリクエストされた場合、 $this->params['action'] には"view"が入ります。

{EN} - 3.5.2.4.6 action

$this->params['action']

Stores the name of the current action handling the request. For example, if the URL /posts/view/1 was requested, $this->params['action'] would equal "view".

Differences

Lines: 1-3Lines: 1-3
 <title>action</title> <title>action</title>
 <p class="method"><code>$this->params['action']</code></p> <p class="method"><code>$this->params['action']</code></p>
-<p>Stores the name of the current action handling the request. For example, if the URL <kbd>/posts/view/1</kbd> was requested, <code>$this->params['action']</code> would equal "view".</p> +<p>リクエストを扱っている現在のアクション名が入ります。例えば、 <kbd>/posts/view/1</kbd> がリクエストされた場合、 <code>$this->params['action']</code> には"view"が入ります。</p>