linderp/sulu-base-bundle
最新稳定版本:0.1.5
Composer 安装命令:
composer require linderp/sulu-base-bundle
包简介
Helper classes and functions for sulu
README 文档
README
Shared Sulu CMS utilities for admin CRUD scaffolding, locale-aware repositories/controllers, and custom admin field types. Use this bundle from your app code to avoid reimplementing standard Sulu admin patterns.
What This Bundle Provides
- Admin CRUD base:
Admin/AdminCrud.phpplus config value objects for list/form/navigation setup. - Enable toggle:
Admin/AdminEnableToggle.php+Controller/Admin/EnableSwitch.phpfor standard on/off actions. - Locale-aware stack:
Entity/LocaleTrait.php,Repository/LocaleRepositoryUtil.php, andController/Admin/LocaleController.php. - List builder helper:
Common/DoctrineListRepresentationFactory.phpfor paginated list responses. - Content types:
Content/Types/*registered inResources/config/services.yaml. - Admin React fields:
Resources/js/src/components/content/types/*registered inResources/js/src/app.js.
Quick Start: Add a New Admin CRUD
- Admin class (extend
AdminCrud):- Implement
define()usingAdminCrudConfig+AdminCrudNavigationConfig+AdminCrudListConfig+AdminCrudFormConfig. - Implement
AdminEnableToggleif the entity has anenabledflag.
- Implement
- Controller (extend
BaseControllerorLocaleController):- Implement
getDataForEntity(),mapDataToEntity(),load(),create(),save(),remove(). - Use
EnableSwitchtrait if you added the enable toggle.
- Implement
- Repository:
- Extend
BaseRepositoryUtilfor plain entities orLocaleRepositoryUtilfor localized entities. - For
LocaleRepositoryUtil, implementappend()andappendSortByJoins()for list/smart content.
- Extend
Example: Minimal Admin Definition
final class EventAdmin extends AdminCrud { public static function define(): AdminCrudConfig { return new AdminCrudConfig( 'events', new AdminCrudNavigationConfig('app.events', 10, 'su-calendar'), new AdminCrudListConfig('app.events', 'events', 'app.events_list'), new AdminCrudFormConfig('title', 'app.events_add', 'app.events_edit', 'event_form') ); } }
统计信息
- 总下载量: 72
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-16