TYPO3 CMS  TYPO3_6-2
TextblockJsonElement.php
Go to the documentation of this file.
1 <?php
3 
23 
29  public $xtype = 'typo3-form-wizard-elements-content-textblock';
30 
36  public $configuration = array(
37  'attributes' => array(),
38  'various' => array(
39  'content' => ''
40  )
41  );
42 
48  protected $allowedAttributes = array(
49  'class',
50  'dir',
51  'id',
52  'lang',
53  'style',
54  'title'
55  );
56 
64  public function setParameters(array $parameters) {
65  parent::setParameters($parameters);
66  $this->setVarious($parameters);
67  }
68 
77  protected function setVarious(array $parameters) {
78  if (isset($parameters['content'])) {
79  $this->configuration['various']['content'] = $parameters['content'];
80  }
81  }
82 
83 }
$parameters
Definition: FileDumpEID.php:15