gpt4 book ai didi

joomla - 如何获取 Joomla 3.1 的当前页面参数和属性

转载 作者:行者123 更新时间:2023-12-03 18:23:19 25 4
gpt4 key购买 nike

我想为我自己的网站创建一个 joomla 3.1 模块。我需要知道如何获取当前类别 id、父类别 id、当前页面 id。请有人告诉我该怎么做。感谢您的提前

最佳答案

从这里记忆,请容忍一些不准确的地方,但它应该足以让你继续。

$input = JFactory::getApplication()->input;

// should be article, categories, featured, blog...
$view = $input->get('view');

// if it's a category view, this will be the category id, else the article id
$id = $input->getInt('id');

// in an article view, this will be the cat id.
$catid = $input->getInt('catid');

// this is the menu item id i.e. what you call page id I guess.
$Itemid = $input->getInt('Itemid');

关于joomla - 如何获取 Joomla 3.1 的当前页面参数和属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17769409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com