Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions es/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ re-renderizar la vista::
{
public function my_action()
{
$this->render('custom_file');
return $this->render('custom_file');
}
}

Expand All @@ -280,7 +280,7 @@ También puedes renderizar vistas dentro de plugins usando la siguiente sintaxis
{
public function myAction()
{
$this->render('Users.UserDetails/custom_file');
return $this->render('Users.UserDetails/custom_file');
}
}

Expand Down
4 changes: 2 additions & 2 deletions ja/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ AJAX 呼び出しではとても有用です。 ::
{
public function my_action()
{
$this->render('custom_file');
return $this->render('custom_file');
}
}

Expand All @@ -251,7 +251,7 @@ AJAX 呼び出しではとても有用です。 ::
{
public function myAction()
{
$this->render('Users.UserDetails/custom_file');
return $this->render('Users.UserDetails/custom_file');
}
}

Expand Down
2 changes: 1 addition & 1 deletion pt/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ convencional. Você pode fazer isso chamando o método
{
public function my_action()
{
$this->render('custom_file');
return $this->render('custom_file');
}
}

Expand Down