adrianmak Posted April 10, 2018 Share Posted April 10, 2018 I put following code in site/ready.php $this->addHookAfter('Pages::deleteReady', null, function($event) { $p = $event->object; die('page delete'); }); When I delete a page, this hook never run. Should I use the wrong hook for a page delete? Link to comment Share on other sites More sharing options...
BitPoet Posted April 11, 2018 Share Posted April 11, 2018 The hook looks fine to me. Are you in fact deleting the page or only trashing it? Link to comment Share on other sites More sharing options...
adrianmak Posted April 11, 2018 Author Share Posted April 11, 2018 i deleted pages on page edit form Link to comment Share on other sites More sharing options...
BitPoet Posted April 11, 2018 Share Posted April 11, 2018 That's trashing them (the tab title is unfortunately misleading there). The pages are put into trash and only deleted when you empty the trash. 2 Link to comment Share on other sites More sharing options...
adrianmak Posted April 12, 2018 Author Share Posted April 12, 2018 thats mean i used the wrong hook? Link to comment Share on other sites More sharing options...
BitPoet Posted April 12, 2018 Share Posted April 12, 2018 Yes, you'll probably have to hook before Pages::trash. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now