AdminPageFramework_Form_Model___Format_CollapsibleSection::get PHP Method

get() public method

public get ( )
    public function get()
    {
        if (empty($this->abCollapsible)) {
            return $this->abCollapsible;
        }
        return $this->_getArguments($this->abCollapsible, $this->sTitle, $this->aSection);
    }

Usage Example

 public function get()
 {
     $_aSectionPath = explode('|', $this->sSectionPath);
     $_aSectionset = $this->uniteArrays(array('_fields_type' => $this->sStructureType, '_structure_type' => $this->sStructureType, '_section_path' => $this->sSectionPath, '_section_path_array' => $_aSectionPath, '_nested_depth' => count($_aSectionPath) - 1) + $this->aSectionset + array('capability' => $this->sCapability), self::$aStructure);
     $_aSectionset['order'] = $this->getAOrB(is_numeric($_aSectionset['order']), $_aSectionset['order'], $this->iCountOfElements + 10);
     $_oCollapsibleArgumentFormatter = new AdminPageFramework_Form_Model___Format_CollapsibleSection($_aSectionset['collapsible'], $_aSectionset['title']);
     $_aSectionset['collapsible'] = $_oCollapsibleArgumentFormatter->get();
     $_aSectionset['class'] = $this->getAsArray($_aSectionset['class']);
     $_aSectionset['_caller_object'] = $this->oCaller;
     return $_aSectionset;
 }
All Usage Examples Of AdminPageFramework_Form_Model___Format_CollapsibleSection::get
AdminPageFramework_Form_Model___Format_CollapsibleSection