Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In Yii framework view page I have the breadcrumb and just below it the content part is there.Now as per my requirment I want the content title should come above the breadcrumb.Now to change the content part and to extract the title of the content I saw that the content part has only this <?php echo $content; ?>.

So how to extract the title and place the breadcrumb part below that part?

share|improve this question

1 Answer

Layouts! All the explanation on how the breadcrums/title are rendered (after/before the echo $content), is in http://www.yiiframework.com/wiki/249/understanding-the-view-rendering-flow/.

In layouts, use $this->pageTitle for title

and

$this->breadcrumbs for breadcrums

For breadcrums widget, see example: $this->widget('zii.widgets.CBreadcrumbs', array( 'links'=>$this->breadcrumbs,)); ?>

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.