Browse Source

Added file extension in View::beginContent docs

tags/2.0.0-beta
Rinat Silnov 12 years ago
parent
commit
f675cdf3e7
  1. 4
      yii/base/View.php

4
yii/base/View.php

@ -465,10 +465,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' 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...
* <?php $this->endContent(); ?>
* ~~~

Loading…
Cancel
Save