Created
April 13, 2016 13:16
-
-
Save jmverges/bbfb15d89cbbb5e3549f78b4d06db7fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace TYPO3\CMS\NewContentElementWizard\Domain\Model; | |
class ContentElementDefinitionGroup | |
{ | |
/** | |
* @var String | |
*/ | |
protected $header; | |
/** | |
* @var String | |
*/ | |
protected $icon; | |
/** | |
* @var ContentElementDefinition[] | |
*/ | |
protected $elements; | |
/** | |
* @var array | |
*/ | |
protected $order = []; | |
/** | |
* @var array | |
*/ | |
protected $before = []; | |
/** | |
* @var array | |
*/ | |
protected $after = []; | |
/** | |
* @return String | |
*/ | |
public function getHeader() | |
{ | |
return $this->header; | |
} | |
/** | |
* @param String $header | |
*/ | |
public function setHeader($header) | |
{ | |
$this->header = $header; | |
} | |
/** | |
* @return String | |
*/ | |
public function getIcon() | |
{ | |
return $this->icon; | |
} | |
/** | |
* @param String $icon | |
*/ | |
public function setIcon($icon) | |
{ | |
$this->icon = $icon; | |
} | |
/** | |
* @return ContentElementDefinition[] | |
*/ | |
public function getElements() | |
{ | |
return $this->elements; | |
} | |
/** | |
* @param ContentElementDefinition[] $elements | |
*/ | |
public function setElements($elements) | |
{ | |
$this->elements = $elements; | |
} | |
/** | |
* @return array | |
*/ | |
public function getOrder() | |
{ | |
return $this->order; | |
} | |
/** | |
* @param array $order | |
*/ | |
public function setOrder($order) | |
{ | |
$this->order = $order; | |
} | |
/** | |
* @return array | |
*/ | |
public function getBefore() | |
{ | |
return $this->before; | |
} | |
/** | |
* @param array $before | |
*/ | |
public function setBefore($before) | |
{ | |
$this->before = $before; | |
} | |
/** | |
* @return array | |
*/ | |
public function getAfter() | |
{ | |
return $this->after; | |
} | |
/** | |
* @param array $after | |
*/ | |
public function setAfter($after) | |
{ | |
$this->after = $after; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment