File: D:/HostingSpaces/SBogers10/tops.komma.pro/wwwroot/lib/content/ambiance.class.php
<?php
/**
* generate_content.class.php
* Created by Komma Mediadesign.
* Author: mike
* Date: 12/02/14
*/
class Ambiance extends Content_Block
{
/*
* Constructor
*/
public function __construct($xml)
{
parent::__construct();
// Get Main blocks
$this->block = $xml->ambiance;
}
/*
* Get Ambiance Image
*/
protected function getImage($obj)
{
$src = $obj->img->attributes()->src;
$alt = $obj->img->attributes()->alt;
$output = '<img src="'. $src .'" alt="' . $alt. '" />';
return $output;
}
}