如何添加新的管理菜单项而不在joomla中重新安装组件



我一直在为Joomla 1.7.x开发一个组件,在开发过程中,我需要将新的组件菜单项添加到管理菜单中,在Joomla中向DB中的组件表添加新行1.5次很容易,但由于Joomla 1.7 中的数据库结构发生了变化,现在通过向菜单表添加新行来添加菜单项似乎很复杂

有没有一种简单的方法可以在不重新安装组件的情况下做到这一点?

tHanks

我找到的最简单的方法:

$table = JTable::getInstance('menu');
$data = array();
$data['menutype'] = 'main';
$data['client_id'] = 1;
$data['title'] = 'ITEM TITLE';
$data['alias'] = 'com-component-name';
$data['link'] = 'index.php?option=com_component_name&view=default';
$data['type'] = 'component';
$data['published'] = '0';
$data['parent_id'] = '117'; // ID, under which you want to add an item
$data['component_id'] = '10026'; // ID of the component
$data['img'] = 'components/com_component_name/assets/images/icon.png';
$data['home'] = 0;
if (
        !$table->setLocation(117, 'last-child') // Parent ID, Position of an item
    || !$table->bind($data) 
    || !$table->check() 
    || !$table->store()
){
    // Install failed, warn user and rollback changes
    JError::raiseWarning(1, $table->getError());
    return false;
}

删除:

$table->delete(120); // item ID
$table->rebuild();

基于http://docs.joomla.org/Using_nested_sets#Adding_a_new_node

Joomla 1.6+菜单项存储在#__menu表下,管理菜单的特殊菜单类型为"main"。

查找主组件管理菜单项的ID。您可以通过将parent_ID列声明为主菜单项的ID并将level列设置为2来添加子项。

您将遇到的唯一其他问题是采用嵌套集(lft和rgt列)。这是处理父子关系和菜单项排序的更好方法。我不确定在这个阶段是否使用parent_id或lft/rgt,但它们都已填写。

要添加新项目,对于值大于或等于您希望添加菜单项的位置的菜单项,您必须将所有lft/rgt值"分流"两个。这应该包括父项的rgt。如果您的父项没有子项,则新项的lft将为父项的左+1的值。新项的rgt值将是父项的lft+2。

lft和rgt需要注意的一点是,编号适用于每个菜单项(前端和后端),因此如果操作不当,可能会破坏整个菜单的继承权。我认为这就是为什么parent_id列仍然被使用,并且在管理区域中有一个选项可以"重建"菜单。

http://en.wikipedia.org/wiki/Nested_set_model

下面是我想出的几个SQL查询(只显示了相关部分):

SET @lastRgt := (SELECT rgt + 1 FROM #__menu WHERE alias="alias-of-preceding-menu-item");
UPDATE #__menu SET rgt=rgt+2 WHERE rgt > @lastRgt;
UPDATE #__menu SET lft=lft+2 WHERE lft > @lastRgt;
INSERT INTO #__menu (menutype, title, alias, path, link, type, published, parent_id, level, component_id, img, client_id, params, access, lft, rgt)
VALUES(..., @lastRgt+1, @lastRgt+2);

在Joomla 2.5上为我工作。

Admit的答案需要更新Joomla 3.x

我确信它对旧的Joomla版本是正确的,这就是为什么我不编辑它。

经过进一步的研究和编辑,这对我来说是有效的。

$table = JTableNested::getInstance('Menu');
$data = array();
$data['menutype'] = 'main';
$data['client_id'] = 1;
$data['title'] = 'ITEM TITLE';
$data['alias'] = 'com-component-name'; 
$data['link'] = 'index.php?option=com_component_name&view=default';
$data['type'] = 'component';
$data['published'] = '0';
$data['parent_id'] = '117'; // ID, under which you want to add an item
$data['component_id'] = '10026'; // ID of the component
$data['img'] = 'components/com_component_name/assets/images/icon.png';
$data['home'] = 0;
$table->setLocation(117, 'last-child') // Parent ID, Position of an item
if (!$table->bind($data) || !$table->check() || !$table->store()) {
    // Install failed, warn user and rollback changes
    JError::raiseWarning(1, $table->getError());
    return false;
}

相关内容

  • 没有找到相关文章

最新更新