cObj->stdWrap($conf['width'], $conf['width.']) : $conf['width'];
if (!$width) {
$width = 1;
}
$height = isset($conf['height.']) ? $this->cObj->stdWrap($conf['height'], $conf['height.']) : $conf['height'];
if (!$height) {
$height = 1;
}
$wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
if (!$wrap) {
$wrap = '|
';
}
$theValue = $this->cObj->wrap('', $wrap);
if (isset($conf['stdWrap.'])) {
$theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
}
return $theValue;
}
}