getField() защищенный метод

protected getField ( $aField )
 /**
  * Returns the output of the field type.
  * 
  * Returns the output of post type checklist check boxes.
  * 
  * @remark      the posttype checklist field does not support multiple elements by passing an array of labels.
  * @since       2.0.0
  * @since       2.1.5       Moved from AdminPageFramework_FormField.
  * @since       3.0.0       Reconstructed entirely.
  * @since       3.3.1       Changed from `_replyToGetField()`.
  */
 protected function getField($aField)
 {
     $this->_sCheckboxClassSelector = '';
     // disable the checkbox class selector.
     $aField['label'] = $this->_getPostTypeArrayForChecklist(isset($aField['slugs_to_remove']) ? $this->getAsArray($aField['slugs_to_remove']) : $this->aDefaultRemovingPostTypeSlugs, $aField['query'], $aField['operator']);
     return parent::getField($aField);
 }
 /**
  * Returns the output of the field type.
  */
 public function getField($aField)
 {
     // Fix some checkbox specific field arguments.
     $aField['label'] = '';
     $aField['select_all_button'] = false;
     $aField['select_none_button'] = false;
     $_sOutput = parent::getField($aField);
     $_sOutput = str_replace("<div class='repeatable-field-buttons'></div>", '', $_sOutput);
     return $_sOutput . "<div class='toggle-button-container'>" . $this->_getToggleElement($aField) . "</div>" . "<div class='repeatable-field-buttons'></div>";
 }