TYPO3 CMS  TYPO3_6-2
TextContentObject.php
Go to the documentation of this file.
1 <?php
3 
23 
30  public function render($conf = array()) {
31  if (!is_array($conf)) {
32  return '';
33  }
34  $content = '';
35  if (isset($conf['value'])) {
36  $content = $conf['value'];
37  unset($conf['value']);
38  }
39  if (isset($conf['value.'])) {
40  $content = $this->cObj->stdWrap($content, $conf['value.']);
41  unset($conf['value.']);
42  }
43  if (count($conf)) {
44  $content = $this->cObj->stdWrap($content, $conf);
45  }
46  return $content;
47  }
48 
49 }