Criar programaticamente item de menu no Joomla
Eu criei um componente no joomla 2.5 que cria um novo artigo e adiciona esse artigo a um item de menu.
Criando o artigo está funcionando bem, mas estou tendo alguns problemas com a criação do item de menu.
Eu tenho o seguinte código:
//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;
}
O erro parece ser com a configuração do parent_id e level. Em bibliotecas de depuração / joomla / database / tablenested.php define o parent_id e level como 0. Isso causou o seguinte erro na minha página de administrador:
Aviso: str_repeat () [function.str-repeat]: O segundo argumento deve ser maior ou igual a 0 em /Applications/MAMP/htdocs/joomla_2_5/administrator/components/com_menus/views/items/tmpl/default.php on linha 129