View Single Post
  #3  
Old 02-17-2016, 08:28 PM
FounderSim FounderSim is offline
Member
 
Join Date: Sep 2014
Posts: 65
Gender: Male
Credits: 7,814
FounderSim is on a distinguished road
Default

Quote:
Originally Posted by pachoofoosh View Post
Mysidia's Model class is abstract, so any classes that inherit it need to define its methods. The error is saying you do not have a save() method in customclass.php.

The class_model.php's save method:
PHP Code:
protected abstract function save($field$value); 
Try adding this to your class_customclass.php file:
PHP Code:
protected function save($field$value) {} 
Good stuff. Works like a charm. I suppose I should have looked into the Model class. =}
__________________
Reply With Quote