Created
November 21, 2012 20:42
-
-
Save DarkMukke/4127528 to your computer and use it in GitHub Desktop.
Sub layouts in Yii
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#file : overall.php | |
<html> | |
<head> <title> stuff </title> </head> | |
<body> | |
<header> | |
this is my header | |
</header> | |
<?php echo $content; ?> | |
<footer> | |
this is my footer with copyright etc | |
</footer> | |
</body> | |
</html> | |
#file : someLayout.php | |
<?php | |
/** | |
* Created by Mukke's Brain. | |
*/ | |
$this->beginContent( '//layouts/overall' ); | |
?> | |
<section> | |
this is a layout specific sub section | |
</section> | |
<section id="mainContent"> | |
<?php echo $content; ?> | |
</section> | |
<?php $this->endContent(); ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment