HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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;
    }
}