TYPO3 CMS  TYPO3_6-2
ImageContentObject.php
Go to the documentation of this file.
1 <?php
3 
23 
30  public function render($conf = array()) {
31  if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
32  return '';
33  }
34 
35  $theValue = $this->cObj->cImage($conf['file'], $conf);
36  if (isset($conf['stdWrap.'])) {
37  $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
38  }
39  return $theValue;
40  }
41 
42 }