buildLabel(); if ($label != '' ) { $label = ' ' . $label; } $output = $label . $this->buildInput() . ' '; $separator = $this->getSeparator(); $placement = $this->getPlacement(); switch ($placement) { case (self::PREPEND): return $output . $separator . $content; case (self::APPEND): default: return $content . $separator . $output; } } }