In my header.php file,acting as the parent, I have:
Code: Select all
$this->data['custom_info'] = $this->getChild('module/sample/getInformation',$this->data['information_id']);
var_dump($this->data['custom_info']);
Code: Select all
function getInformation($information_id) {
$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "custom_information WHERE information_id = '" . (int)$information_id . "'");
return $query->rows;
}
Any help would be quite appreciated