AdminPageFramework_Form_admin_page::getOtherTabOptions PHP Method

getOtherTabOptions() public method

public getOtherTabOptions ( $aOptions, $sPageSlug, $sTabSlug )
    public function getOtherTabOptions($aOptions, $sPageSlug, $sTabSlug)
    {
        $_aStoredOptionsNotOfTheTab = array();
        foreach ($this->aFieldsets as $_sSectionPath => $_aSubSectionsOrFields) {
            if ($this->_isThisSectionSetToThisTab($_sSectionPath, $sPageSlug, $sTabSlug)) {
                continue;
            }
            $this->_setOtherTabOptions($_aStoredOptionsNotOfTheTab, $aOptions, $_aSubSectionsOrFields, $_sSectionPath);
        }
        return $_aStoredOptionsNotOfTheTab;
    }