Created
April 1, 2011 01:40
-
-
Save grauwoelfchen/897603 to your computer and use it in GitHub Desktop.
pageTitle of CakePHP 1.3
This file contains 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
// 1.2 | |
$this->pageTitle = 'Cute Blog'; | |
// with h1 | |
<h1><?php e($this->pageTitle = 'Wonderful Blog'); ?></h1> | |
// 1.3 | |
$this->set('title_for_layout', 'Nice Blog'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment