新しい記事を作成し、その記事をメニュー項目に追加する joomla 2.5 のコンポーネントを作成しました。
記事の作成はうまくいっていますが、メニュー項目の作成に問題があります。
次のコードがあります。
//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;
}
エラーは、parent_id と level の設定にあるようです。libraries/joomla/database/tablenested.php のデバッグ時に、parent_id とレベルを 0 に設定します。これにより、管理者ページで次のエラーが発生しました。
警告: str_repeat() [function.str-repeat]: 2 番目の引数は、/Applications/MAMP/htdocs/joomla_2_5/administrator/components/com_menus/views/items/tmpl/default.php で 0 以上でなければなりません129行目