Amruta Lonkar wrote:
Hi,
I am trying to find whihc function is called when user hits the save button on edit page and in whihc file the button click for save is checked.
Any help appreciated.
Thanks,
Amruta
Article::save(), in Article.php. Submitting the form generates a POST request to index.php with action=save in the query string. This action is dispatched to the Article object.
-- Tim Starling