Heim  >  Artikel  >  Backend-Entwicklung  >  Yii Framework Tutorial (13) UI-Komponente ContentDecorator-Beispiel

Yii Framework Tutorial (13) UI-Komponente ContentDecorator-Beispiel

黄舟
黄舟Original
2017-01-21 10:12:301060Durchsuche

Ähnlich wie bei Java Swing ermöglicht das Layout im Yii Framework auch die Verschachtelung. Sie müssen CContentDecorator jedoch nicht direkt im Code verwenden Layout. >Wobei Ansicht ein anderes Layout ist.

$this->beginContent('path/to/view');
// ... content to be decorated
$this->endContent();
Dieses Beispiel definiert vier Layouts, eines davon verschachtelt:

Yii Framework Tutorial (13) UI-Komponente ContentDecorator-BeispielDas Ergebnis ist wie folgt:

///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(&#39;/layouts/row2&#39;); ?>    
<center>    
        <?php echo $content; ?>    
</center>    
<p />    
<center>    
        <?php echo &#39;row1 part&#39;; ?>    
</center>    
<?php $this->endContent(); ?>    
        
//row2.php    
<?php $this->beginContent(&#39;/layouts/row3&#39;); ?>    
<center>    
        <?php echo $content; ?>    
</center>    
<p />    
<center>    
        <?php echo &#39;row2 part&#39;; ?>    
</center>    
<?php $this->endContent(); ?>    
        
///row3.php    
<?php $this->beginContent(&#39;/layouts/main&#39;); ?>    
<center>    
        <?php echo $content; ?>    
</center>    
<p />    
<center>    
        <?php echo &#39;row3 part&#39;; ?>    
</center>    
<?php $this->endContent(); ?>

Das Obige ist der Inhalt des Yii Framework-Tutorials (13) UI-Komponente ContentDecorator-Beispiel. Weitere verwandte Inhalte finden Sie auf der chinesischen PHP-Website (www.php.cn)! Yii Framework Tutorial (13) UI-Komponente ContentDecorator-Beispiel

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn