Skip to content

Instantly share code, notes, and snippets.

@kellyelton
Created December 18, 2014 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kellyelton/221ef10e3de4267beb4f to your computer and use it in GitHub Desktop.
Save kellyelton/221ef10e3de4267beb4f to your computer and use it in GitHub Desktop.
ConcreteSnippit
public function display() {
$c = Page::getCurrentPage();
if(!$c->cID)
{
$c = Page::getByPath("/page_not_found");
if(!$c->cID)
echo "1";
}
parent::getOrCreate($c, $this->arHandle, 1);
parent::display($c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment