Semblable à Java Swing, la mise en page dans Yii Framework permet également l'imbrication. Ceci est réalisé via CContentDecorator. Cependant, vous n'avez pas besoin d'utiliser CContentDecorator directement dans le code. Utilisez plutôt
$this->beginContent('path/to/view'); // ... content to be decorated $this->endContent();
///main.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><?php echo Yii::app()->name; ?></title> </head> <body> <h1>Widget Demo</h1> <?php echo $content; ?> </body> </html> ///row1.php <?php $this->beginContent('/layouts/row2'); ?> <center> <?php echo $content; ?> </center> <p /> <center> <?php echo 'row1 part'; ?> </center> <?php $this->endContent(); ?> //row2.php <?php $this->beginContent('/layouts/row3'); ?> <center> <?php echo $content; ?> </center> <p /> <center> <?php echo 'row2 part'; ?> </center> <?php $this->endContent(); ?> ///row3.php <?php $this->beginContent('/layouts/main'); ?> <center> <?php echo $content; ?> </center> <p /> <center> <?php echo 'row3 part'; ?> </center> <?php $this->endContent(); ?>
Ce qui précède est le contenu du didacticiel Yii Framework (13) Exemple de composant d'interface utilisateur ContentDecorator. Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !