get() public method

public get ( $bTableRow = true )
 private function _getSectionContent($_iSectionIndex)
 {
     if ($this->aSectionset['content']) {
         return $this->_getCustomSectionContent();
     }
     $_oFieldsets = new AdminPageFramework_Form_View___FieldsetRows($this->aFieldsetsPerSection, $_iSectionIndex, $this->aSavedData, $this->aFieldErrors, $this->aFieldTypeDefinitions, $this->aCallbacks, $this->oMsg);
     return $_oFieldsets->get();
 }
 public function get()
 {
     $this->sCapability = $this->callback($this->aCallbacks['capability'], '');
     if (!$this->canUserView($this->sCapability)) {
         return '';
     }
     $this->_formatElementDefinitions($this->aSavedData);
     $_oFieldsets = new AdminPageFramework_Form_View___FieldsetRows($this->getElementAsArray($this->aFieldsets, '_default'), null, $this->aSavedData, $this->getFieldErrors(), $this->aFieldTypeDefinitions, $this->aCallbacks, $this->oMsg);
     return $_oFieldsets->get();
 }