qcovery / delivery
此包的最新版本(1.0)没有可用的许可信息。
VuFind 的交付模块
1.0
2024-03-05 07:30 UTC
Requires
- php: >=7.3
- qcovery/vufind-composer-installer-plugin: ^1.0.0
This package is auto-updated.
Last update: 2024-09-06 14:55:08 UTC
README
本模块添加一个自定义表单以集成数字化/按需交付服务。可以通过配置文件配置此表单,并且还可以将其限制为某些用户组。
用法
将模块集成到 VuFind 的 modules 目录中,并通过将 Delivery 添加到 VUFIND_LOCAL_MODULES 来激活它。
手动添加模块时,请确保复制和修改配置文件,并复制/创建符号链接到主题。
确保通过将 sql/mysql.sql 应用到您的 VuFind 数据库来正确设置数据库。
将以下行添加到您的模板中,以启用此模块的功能
<?=$this->render('myresearch/delivery-menu.phtml', ['active' => $this->active, 'profile' => $this->profile]); ?>
将此行添加到 myresearch 菜单中。
?=$this->render('RecordDriver/DefaultRecord/delivery-toolbar.phtml'); ?>
将此行添加到详细视图。
<?=$this->render('RecordDriver/DefaultRecord/delivery-result-list.phtml'); ?>
将此行添加到结果列表条目的主体中。