View Single Post
  #2  
Old 02-17-2016, 10:56 AM
pachoofoosh's Avatar
pachoofoosh pachoofoosh is offline
Artist
 
Join Date: Dec 2012
Location: New York
Posts: 98
Gender: Unknown/Other
Credits: 15,857
pachoofoosh is on a distinguished road
Default

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) {} 
__________________
The calzones... betrayed me?
Reply With Quote