first
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Nextend\SmartSlider3\SlideBuilder;
|
||||
|
||||
|
||||
class BuilderComponentRow extends AbstractBuilderComponent {
|
||||
|
||||
protected $defaultData = array(
|
||||
"type" => 'row',
|
||||
"name" => 'Row',
|
||||
"cols" => array(),
|
||||
"desktopportraitpadding" => '10|*|10|*|10|*|10|*|px'
|
||||
);
|
||||
|
||||
/** @var BuilderComponentCol[] */
|
||||
private $cols = array();
|
||||
|
||||
/**
|
||||
*
|
||||
* @param AbstractBuilderComponent $container
|
||||
*/
|
||||
public function __construct($container) {
|
||||
|
||||
$container->add($this);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $layer BuilderComponentCol
|
||||
*/
|
||||
public function add($layer) {
|
||||
$this->cols[] = $layer;
|
||||
}
|
||||
|
||||
public function getData() {
|
||||
$this->data['cols'] = array();
|
||||
foreach ($this->cols as $layer) {
|
||||
$this->data['cols'][] = $layer->getData();
|
||||
}
|
||||
|
||||
return parent::getData();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user