/**
  * Get the label position
  * @return string
  */
 public function getLabelPosition(Checkbox $oElement)
 {
     return $oElement->getLabelOption('position') ?: FormRow::LABEL_APPEND;
 }
 /**
  * Get the label position
  * @return string
  */
 public function getLabelPosition(\Zend\Form\Element\Checkbox $oElement)
 {
     return $oElement->getLabelOption('position') ?: \Zend\Form\View\Helper\FormRow::LABEL_APPEND;
 }