有人知道这样的模块吗?
基本上我想使用loadmodule选项动态加载文章中某些用户组中的用户。
答案 0 :(得分:1)
结束了我自己的建设。
modfile:
sudo ARCHFLAGS='-arch x86_64' gem install nokogiri -- --use-system-libraries
助手:
<?php
defined('_JEXEC') or die;
// Include the latest functions only once
require_once __DIR__ . '/helper.php';
$shownumber = $params->get('shownumber', 10);
$groupnumber = $params->get('group', 4);
$names = ModUsersUsergroupHelper::getUsers($params);
$moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8');
require JModuleHelper::getLayoutPath('mod_users_usergroup', $params->get('layout', 'default'));
答案 1 :(得分:0)
我不知道有这样的扩展名,但您可以使用Sourcerer或类似内容在自定义HTML模块中包含一些代码以获得所需的结果。
然后可以使用loadmodule在文章中显示自定义HTML模块。
有关示例代码,请参阅:https://stackoverflow.com/a/20743966