Skip to content

Instantly share code, notes, and snippets.

@ogabrielsantos
Created June 16, 2015 18:00
Show Gist options
  • Save ogabrielsantos/53fdb1a787a8b824be30 to your computer and use it in GitHub Desktop.
Save ogabrielsantos/53fdb1a787a8b824be30 to your computer and use it in GitHub Desktop.
<?php
class App
{
public $controllerTitle = null;
public function beforeFilter()
{
if ($this->controllerTitle) {
$this->set('controllerTitle', $this->controllerTitle);
}
}
}
class Foo extends App
{
$controllerTitle = 'Foos';
public function list()
{
$this->controllerTitle = 'Listar foo';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment