Skip to content

Instantly share code, notes, and snippets.

@lupomontero
Created January 21, 2011 14:30
Show Gist options
  • Save lupomontero/789732 to your computer and use it in GitHub Desktop.
Save lupomontero/789732 to your computer and use it in GitHub Desktop.
PHPFrame_Plugin::preDispatch()
<?php
class SillyPlugin extends PHPFrame_Plugin
{
public function preDispatch()
{
var_dump($_SERVER["HTTP_REFERER"]);
exit;
}
}
// on my local copy of mashine outputs:
// string 'http://localhost/mashine/dashboard' (length=34)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment