我想通过从 joomla 模板传递文章 ID 来获取文章文本。
简单,为您提供使用 post/get 发送文章 id 并使用变量“id”作为其编号:
$articleId = JRequest::getInt('id');
$db =& JFactory::getDBO();
$sql = "SELECT fulltext FROM #__content WHERE id = ".intval($articleId);
$db->setQuery($sql);
$fullArticle = $db->loadResult();
if(!strlen(trim($fullArticle))) $fullArticle = "Article is empty ";
编辑:从任何地方获取articleId:
$articleId = (JRequest::getVar('option')==='com_content' && JRequest::getVar('view')==='article')? JRequest::getInt('id') : 0;
尝试这个技巧:
$article = JControllerLegacy::getInstance('Content')->getModel('Article')->getItem($articleId);
echo $article->introtext;
在 Joomla 2.5 中通过文章 ID 获取文章文本(根据文档 3 也可以工作)插件:
$article =& JTable::getInstance("content");
$article->load($id);
$content = '<h3>'. $article->get("title").'</h3>';
$content .= $article->get("introtext"); // introtext and/or fulltext
文章 id 是从组件/插件参数中获取的,例如:
从自己的组件内部:
$app = JFactory::getApplication();
$params = $app->getParams();
$param = $params->get('terms_article_id');
来自其他组件:
$params = JComponentHelper::getParams('com_mycom');
$id = $params->get('terms_article_id');
从模板的php文件中获取模块参数:
$module = JModuleHelper::getModule('mod_mymodule');
$params = new JRegistry($module->params); // or $mymoduleParams if few used
$id = (int) $headLineParams['count'];
Joomla 有从 sql 表获取内容的默认脚本。
这里文章(#__content)
获取文章 ID:
$articleId = (JRequest::getVar('option')==='com_content' && JRequest::getVar('view')==='article')? JRequest::getInt('id') : 0;
获取文章内容:
$table_plan = & JTable::getInstance('Content', 'JTable');
$table_plan_return = $table_plan->load(array('id'=>$articleId));
echo "<pre>";print_r($table_plan->introtext);echo "</pre>";
在 Joomla 4/5 中:
use Joomla\CMS\Factory;
$app = Factory::getApplication();
$factory = $app->bootComponent('com_content')->getMVCFactory();
$model = $factory->createModel('Article');
$article = $model->getItem($id);
echo $article->introtext; // or fulltext