AdminPageFramework_Form_View___Attribute_SectionsTablesContainer::_getDynamicElementArguments PHP Method

_getDynamicElementArguments() private method

private _getDynamicElementArguments ( $aSectionset )
    private function _getDynamicElementArguments($aSectionset)
    {
        if (empty($aSectionset['repeatable']) && empty($aSectionset['sortable'])) {
            return array();
        }
        $aSectionset['_index'] = null;
        $_oSectionNameGenerator = new AdminPageFramework_Form_View___Generate_SectionName($aSectionset, $aSectionset['_caller_object']->aCallbacks['hfSectionName']);
        return array('data-largest_index' => max((int) $this->iSubSectionCount - 1, 0), 'data-section_id_model' => $aSectionset['section_id'] . '__' . '___i___', 'data-flat_section_name_model' => $aSectionset['section_id'] . '|___i___', 'data-section_name_model' => $_oSectionNameGenerator->getModel());
    }
AdminPageFramework_Form_View___Attribute_SectionsTablesContainer