Warning: count(): Parameter must be an array or an object that implements Countable on line 5
<?php
class ModelSliderTGsuperstarRevolutionSlider extends Model {
public function getSlider($id) {
$query = $this->db->query("SELECT * FROM ".DB_PREFIX."tg_superstar_revolution_slider WHERE id='".$id."'");
if( count($query) ) {
foreach($query->rows as $row) {
$output = array(
'id' => $row['id'],
'settings' => unserialize($row['settings']),
'content' => unserialize($row['content'])
);
return $output;
}
}
return false;
}
}
?>
How can I fix this error? Many thanks! JJ