• File: AbstractBuilderComponent.php
  • Full Path: /home/atelipy/www/wpmain/plugins/smart-slider-3/Nextend/SmartSlider3/SlideBuilder/AbstractBuilderComponent.php
  • File size: 781 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Nextend\SmartSlider3\SlideBuilder;

abstract class AbstractBuilderComponent {

    protected $defaultData = array();

    protected $data = array();


    public function set($keyOrData, $value = null) {

        if (is_array($keyOrData)) {
            foreach ($keyOrData as $key => $value) {
                $this->setSingle($key, $value);
            }
        } else {
            $this->setSingle($keyOrData, $value);
        }

        return $this;
    }

    private function setSingle($key, $value) {
        $this->data[$key] = $value;
    }

    public function getData() {
        return array_merge($this->defaultData, $this->data);
    }

    /**
     * @param AbstractBuilderComponent $component
     */
    public function add($component) {
    }
}