AdminPageFramework_Form_View___Generate_SectionName::_getSectionName PHP Method

_getSectionName() protected method

protected _getSectionName ( $isIndex = null )
    protected function _getSectionName($isIndex = null)
    {
        $this->aArguments = $this->aArguments + array('section_id' => null, '_index' => null);
        if (isset($isIndex)) {
            $this->aArguments['_index'] = $isIndex;
        }
        $_aNameParts = $this->aArguments['_section_path_array'];
        if (isset($this->aArguments['section_id'], $this->aArguments['_index'])) {
            $_aNameParts[] = $this->aArguments['_index'];
        }
        $_sResult = $this->_getInputNameConstructed($_aNameParts);
        return $_sResult;
    }
AdminPageFramework_Form_View___Generate_SectionName