Merge pull request #301 from rinatio/view-begin-content-docs

View begin content docs
This commit is contained in:
Qiang Xue
2013-05-16 17:09:43 -07:00

View File

@@ -391,10 +391,10 @@ class View extends Component
/** /**
* Begins the rendering of content that is to be decorated by the specified view. * 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 * 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' like the following: * in another layout file specified as '@app/view/layouts/base.php' like the following:
* *
* ~~~ * ~~~
* <?php $this->beginContent('@app/view/layouts/base'); ?> * <?php $this->beginContent('@app/view/layouts/base.php'); ?>
* ...layout content here... * ...layout content here...
* <?php $this->endContent(); ?> * <?php $this->endContent(); ?>
* ~~~ * ~~~