Skip to content

Instantly share code, notes, and snippets.

@wesrice
Created May 13, 2014 23:33
Show Gist options
  • Save wesrice/218e726a7e0614b0811b to your computer and use it in GitHub Desktop.
Save wesrice/218e726a7e0614b0811b to your computer and use it in GitHub Desktop.
Redirect on Save
craft()->on('entries.saveEntry', function(Event $event) {
$entry = $event->params['entry'];
if( $event->params['entry']->sectionId == 4 ) {
craft()->request->redirect( '/admin/nameofplugin' );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment