__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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) {
}
}| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AbstractBuilderComponent.php | File | 781 B | 0664 |
|
| BuilderComponentCol.php | File | 1.1 KB | 0664 |
|
| BuilderComponentContent.php | File | 913 B | 0664 |
|
| BuilderComponentItem.php | File | 932 B | 0664 |
|
| BuilderComponentLayer.php | File | 3.04 KB | 0664 |
|
| BuilderComponentRow.php | File | 930 B | 0664 |
|
| BuilderComponentSlide.php | File | 1.9 KB | 0664 |
|