Skip to content

Instantly share code, notes, and snippets.

@holisticnetworking
Created February 23, 2017 14:07
Show Gist options
  • Save holisticnetworking/8d887773b510dccc6e499fe549542aa8 to your computer and use it in GitHub Desktop.
Save holisticnetworking/8d887773b510dccc6e499fe549542aa8 to your computer and use it in GitHub Desktop.
Overriding title
// In AppController.php:
public function initialize() {
// Default title
$title = sprintf(
'%s: %s',
ucfirst( $this->name ),
$this->request->params['action']
);
$this->set( 'title', $title );
parent::initialize();
}
// In PaymentTransactionController:
public function index() {
$title = 'Payment Transaction Search';
$this->set( 'title', $title );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment