Skip to content
Code-Schnipsel Gruppen Projekte
Block.php 2,1 KiB
Newer Older
Henning Leutz's avatar
Henning Leutz committed
<?php

/**
 * This file contains \QUI\Blocks\Block
 */

namespace QUI\BLocks;

use QUI;

/**
 * Class Block
 * A Block from the Blockmanager
 *
 * @author www.pcsg.de (Henning Leutz)
 * @package quiqqer/blocks
 */
class Block extends QUI\QDOM
{
Henning Leutz's avatar
Henning Leutz committed
    /**
     * Block settings
     * @var array
     */
    protected $_settings = array();

Henning Leutz's avatar
Henning Leutz committed
    /**
     * Constructor
     * @param array $params - block params
     */
    public function __construct($params=array())
    {
        // default
Henning Leutz's avatar
Henning Leutz committed
        $default = array(
            'type'        => 'content',
            'content'     => '',
            'title'       => '',
            'description' => '',
            'project'     => '',
            'areas'       => ''
        );

        $this->setAttributes( $default );

        if ( isset( $params['settings'] ) )
        {
            $settings = $params['settings'];

            if ( is_string( $settings ) ) {
                $settings = json_decode( $settings, true );
            }

            $this->_settings = $settings;
        }

        foreach ( $default as $key => $value )
        {
            if ( isset( $params[ $key ] ) ) {
                $this->setAttribute( $key, $params[ $key ] );
            }
        }
Henning Leutz's avatar
Henning Leutz committed
    }

    /**
     * Return the HTML of the Block
Henning Leutz's avatar
Henning Leutz committed
     *
     * @throw QUI\Exception
Henning Leutz's avatar
Henning Leutz committed
     */
    public function create()
    {
Henning Leutz's avatar
Henning Leutz committed
        if ( $this->getAttribute( 'type' ) == 'content' ) {
            return $this->getAttribute( 'content' );
        }
Henning Leutz's avatar
Henning Leutz committed
        $Ctrl = $this->getAttribute( 'type' );
Henning Leutz's avatar
Henning Leutz committed
        if ( !is_callable( $Ctrl ) ) {
            throw new QUI\Exception( 'Control not found. Block could not be create' );
        }
Henning Leutz's avatar
Henning Leutz committed
        /* @var $Control \QUI\Control */
        $Control = new $Ctrl();
Henning Leutz's avatar
Henning Leutz committed
        if ( !($Control instanceof QUI\Control) ) {
            throw new QUI\Exception( 'Control not found. Block could not be create' );
Henning Leutz's avatar
Henning Leutz committed
        $Control->setAttributes( $this->getSettings() );

        return $Control->create();
    }

    /**
     * Return the block settings
     * @return array
     */
    public function getSettings()
    {
        return $this->_settings;