AdminPageFramework_Model_Form::_registerHelpPaneItemsOfFormSections PHP Метод

_registerHelpPaneItemsOfFormSections() публичный Метод

public _registerHelpPaneItemsOfFormSections ( $aSectionsets )
    public function _registerHelpPaneItemsOfFormSections($aSectionsets)
    {
        foreach ($aSectionsets as $_aSectionset) {
            $_aSectionset = $_aSectionset + array('help' => null, 'page_slug' => null, 'tab_slug' => null, 'title' => null, 'section_id' => null, 'help' => null, 'help_aside' => null);
            if (empty($_aSectionset['help'])) {
                continue;
            }
            $this->addHelpTab(array('page_slug' => $_aSectionset['page_slug'], 'page_tab_slug' => $_aSectionset['tab_slug'], 'help_tab_title' => $_aSectionset['title'], 'help_tab_id' => $_aSectionset['section_id'], 'help_tab_content' => $_aSectionset['help'], 'help_tab_sidebar_content' => $this->oUtil->getElement($_aSectionset, 'help_aside', '')));
        }
    }