| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxVps\Core\UI\Builder;
- /**
- * Base Container element. Every UI element should extend this.
- *
- * @author inbs
- */
- class BaseContainer extends Context {
- protected $data = [];
- /**
- * @param array $data
- * @return $this
- */
- public function setData(array $data = [])
- {
- $this->data = $data;
- $this->updateData();
-
- return $this;
- }
- public function getData()
- {
- return $this->data;
- }
- protected function updateData()
- {
- foreach ($this->data as $key => $value)
- {
- if (property_exists($this, $key))
- {
- $this->$key = $value;
- }
- }
- $this->data = [];
-
- return $this;
- }
- }
|