I implemented a rollback mechanism for my php execution so if an error occurs it will pop a stack and undo actions. How can I add this hook so my function is called anytime show_error is used?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Actually there is no such hook available.You need to hack it.
Modify the function “show_error()” in CI_Exceptions class (File: system/libraries/Exceptions.php) as per your Requirement.
This should be a reference to start with.
Update:
You should extent CI_Exceptions rather then modifying in-place.