Hi all,
This is a small how-to for getting additional resources in e-mail.
Everything is done inside Reservation.class.php.
In function send_email you have to add :
$this->ar = $this->db->get_sup_resources($this->id); // return array
$arCount = count($this->ar);
$arArray = $this->ar;
$txtAR = "";
for ($i=0;$i < $arCount; $i++) {
$txtAR = $txtAR . $arArray[$i]['name'].", "; // concenate string
}
then depending on layout of your table (message)
you have to put this
<tr class="values">
<td>Additional resources</td>
<td>$txtAR</td>
<td colspan="6"> </td>
</tr>
That's it.