Programowo utwórz element menu w Joomla

Stworzyłem komponent w joomla 2.5, który tworzy nowy artykuł i dodaje ten artykuł do elementu menu.

Tworzenie artykułu działa dobrze, ale mam problem z utworzeniem elementu menu.

Mam następujący kod:

                //add the article to a menu item
                $menuTable = JTable::getInstance('Menu', 'JTable', array());

                    $menuData = array(
                    'menutype' => 'client-pages',
                    'title' => $data[name],
                    'type' => 'component',
                    'component_id' => 22,                  
                    'link' => 'index.php?option=com_content&view=article&id='.$resultID,
                    'language' => '*',
                    'published' => 1,
                    'parent_id' => '1',
                    'level' => 1,
                );

                // Bind data
                if (!$menuTable->bind($menuData))
                {
                    $this->setError($menuTable->getError());
                    return false;
                }

                // Check the data.
                if (!$menuTable->check())
                {
                    $this->setError($menuTable->getError());
                    return false;
                }

                // Store the data.
                if (!$menuTable->store())
                {
                    $this->setError($menuTable->getError());
                    return false;
                }

Błąd wydaje się być związany z ustawieniem parent_id i level. Podczas debugowania bibliotek / joomla / database / tablenested.php ustawia parent_id i poziom na 0. Spowodowało to następujący błąd na mojej stronie administratora:

Ostrzeżenie: str_repeat () [function.str-repeat]: Drugi argument musi być większy lub równy 0 w /Applications/MAMP/htdocs/joomla_2_5/administrator/components/com_menus/views/items/tmpl/default.php on linia 129

questionAnswers(4)

yourAnswerToTheQuestion