AdminPageFramework_Form_Model___Format_CollapsibleSection::_getArguments PHP Method

_getArguments() private method

private _getArguments ( $abCollapsible, $sTitle, array $aSection )
$aSection array
    private function _getArguments($abCollapsible, $sTitle, array $aSection)
    {
        $_aCollapsible = $this->getAsArray($this->abCollapsible) + array('title' => $sTitle) + self::$aStructure;
        $_aCollapsible['toggle_all_button'] = implode(',', $this->getAsArray($_aCollapsible['toggle_all_button']));
        if (!empty($aSection)) {
            $_aCollapsible['toggle_all_button'] = $this->_getToggleAllButtonArgument($_aCollapsible['toggle_all_button'], $aSection);
        }
        $_aCollapsible['toggle_all_button'] = $this->getAOrB('' === $_aCollapsible['toggle_all_button'], false, $_aCollapsible['toggle_all_button']);
        return $_aCollapsible;
    }
AdminPageFramework_Form_Model___Format_CollapsibleSection