webtrees/example-module
Composer 安装命令:
composer require webtrees/example-module
包简介
Example module for webtrees
README 文档
README
This package shows you how to create a custom module in webtrees.
It is designed as a teaching-aid / documentation.
Rather than using this entire module as a starting point for your own module, it is recommended that you start with a minimal module, and copy/paste/edit just the features you need.
Minimal module
A module is a file called module.php that returns an object that implements ModuleCustomInterface.
Here is a minimal module. Create a folder for it, such as /modules_v4/my-module/ and store your module files there.
Although it doesn’t do anything yet, it will appear in the control panel.
<?php // module.php
use Fisharebest\Webtrees\Module\AbstractModule;
use Fisharebest\Webtrees\Module\ModuleCustomInterface;
use Fisharebest\Webtrees\Module\ModuleCustomTrait;
class MyModule extends AbstractModule implements ModuleCustomInterface
{
use ModuleCustomTrait;
}
return new MyModule();
Many PHP developers like to store each class in a separate file. If you are one of these, you would split this into two files. If you have a simple module, you may prefer everything in one file.
<?php // module.php
require_once __DIR__ . '/MyModule.php';
return new MyModule();
<?php // MyModule.php
use Fisharebest\Webtrees\Module\AbstractModule;
use Fisharebest\Webtrees\Module\ModuleCustomInterface;
use Fisharebest\Webtrees\Module\ModuleCustomTrait;
class MyModule extends AbstractModule implements ModuleCustomInterface
{
use ModuleCustomTrait;
}
The code in this package uses the namespace \Webtrees\Example.
You do not need to use namespaces.
If you do, use the format \MyOrganisationName\MyModuleName.
How do I...?
Add a new webtrees component such as a menu, chart, tab, block
Your module needs to implement the corresponding interface and use the corresponding trait. e.g. ModuleMenuInterface and ModuleMenuTrait
You can implement more than one component in the same module.
webtrees/example-module 适用场景与选型建议
webtrees/example-module 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 webtrees/example-module 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 webtrees/example-module 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2026-02-03