I have a component I made earlier this year with jCook v2.0. I came back to update/upgrade the component to add some features. Well, the structure has changed and I was wondering if someone could point me in the right direction.
Before:
com_name > admin > tables > the_item.php
Within this file was this:
/**
* Overrides JTable::store to set modified data and user id.
*
* @access public
* @param boolean $updateNulls True to update fields even if they are null.
*
* @return boolean True on success
*/
public function store($updateNulls = false)
{
.....
}
I inserted my code that needed to run after a new item was created and life was good. In v2.5.4 this no longer exists. I am assuming it has been moved?
Ideas?