Browse Source

Fix doc

tags/2.0.0-beta
Sergey Gonimar 11 years ago
parent
commit
ff92af3f0b
  1. 4
      framework/yii/base/View.php

4
framework/yii/base/View.php

@ -356,10 +356,10 @@ class View extends Component
/**
* Begins the rendering of content that is to be decorated by the specified view.
* This method can be used to implement nested layout. For example, a layout can be embedded
* in another layout file specified as '@app/view/layouts/base.php' like the following:
* in another layout file specified as '@app/views/layouts/base.php' like the following:
*
* ~~~
* <?php $this->beginContent('@app/view/layouts/base.php'); ?>
* <?php $this->beginContent('@app/views/layouts/base.php'); ?>
* ...layout content here...
* <?php $this->endContent(); ?>
* ~~~

Loading…
Cancel
Save