manuxi / sulu-event-bundle
Event management bundle for Sulu CMS with calendar, recurrence, and social features
Installs: 124
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 4
Open Issues: 0
Type:symfony-bundle
pkg:composer/manuxi/sulu-event-bundle
Requires
- php: ^8.2
- doctrine/doctrine-bundle: ^2.13
- manuxi/sulu-shared-tools-bundle: ^0.4
- massive/search-bundle: ^2.9
- phpcr/phpcr-migrations-bundle: ^1.6
- sulu/automation-bundle: ^2.1
- sulu/sulu: ^2.6
- symfony/config: ^6.2 | ^7.0
- symfony/dependency-injection: ^6.2 | ^7.0
- symfony/framework-bundle: ^6.2 | ^7.0
- symfony/http-foundation: ^6.2 | ^7.0
- symfony/http-kernel: ^6.2 | ^7.0
- symfony/intl: ^6.2 | ^7.0
- symfony/rate-limiter: ^6.2 | ^7.0
- symfony/security-core: ^6.2 | ^7.0
- symfony/translation: ^6.2 | ^7.0
- twig/extra-bundle: ^3.12
- twig/intl-extra: ^3.12
Requires (Dev)
- jackalope/jackalope-doctrine-dbal: ^1.3.4
- phpspec/prophecy: ^1.17
- phpspec/prophecy-phpunit: ^2.4
- phpunit/phpunit: 9.6
- symfony/browser-kit: ^6.2 | ^7.0
- symfony/console: ^6.2 | ^7.0
- symfony/phpunit-bridge: ^6.2 | ^7.0
- dev-main
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8.0
- 1.7.1
- 1.7.0
- 1.6.1
- 1.6.0
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.0
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.10
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.5
- 1.1.4
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.2
- v1.0.1
- v1.0.0
- dev-feature/calendar
- dev-master
This package is auto-updated.
Last update: 2025-11-12 00:43:59 UTC
README
The SuluEventBundle extends Sulu CMF with comprehensive event management. It enables the creation and management of events with detailed information, locations, media and multilingual support. Advanced features such as recurring events, a calendar frontend, iCal export and social media integration are also included. This bundle is based on the Sulu Workshop and has been equipped with more and more features over time.
โจ Features
๐ Event Management
- Extensive Event Details - Title, subtitle, summary, text, and more
- Date & Time - Flexible start/end dates
- Locations - Separate location management with address details
- Media Integration - Hero images, image galleries, PDF attachments
- SEO & Excerpt - Full SEO and excerpt management
- Multilingual - Full translation support
- Author Management - Assign contacts as event authors
- Settings - Extensive configuration options
- More - Trash, automations, etc.
๐ Advanced Features
- Recurring Events - Daily, weekly, monthly, yearly patterns with exceptions
- Social Media Integration - Per-event sharing configuration (Facebook, Twitter, LinkedIn, Instagram, WhatsApp)
- Calendar - FullCalendar.js integration with year/month/week/list view
- iCal Export - Single events or full calendar subscriptions (webcal://)
- RSS/Atom Feeds - Keep subscribers updated on new events
- Smart Content - Usable as a content block in any Sulu page
๐ Prerequisites
- PHP 8.2 or higher
- Sulu CMS 2.6 or higher
- Symfony 6.2 or higher
- MySQL 5.7+ / MariaDB 10.2+ / PostgreSQL 11+
๐ฉ๐ปโ๐ญ Installation
Step 1: Install the package
composer require manuxi/sulu-event-bundle
If you are not using Symfony Flex, add the bundle to config/bundles.php:
return [ //... Manuxi\SuluEventBundle\SuluEventBundle::class => ['all' => true], ];
Step 2: Configure routes
Add to routes_admin.yaml:
SuluEventBundle: resource: '@SuluEventBundle/Resources/config/routes_admin.yaml'
For FullCalendar integration/iCal/Feeds, the following must be added to routes_website.yaml:
SuluEventBundle: resource: '@SuluEventBundle/Resources/config/routes_website.yaml'
Step 3: Configure search
Add to sulu_search.yaml:
sulu_search: website: indexes: - events_published # Published Events (Website) - events # Draft Events (Admin)
Step 4: Update the database
# Check what will be created php bin/console doctrine:schema:update --dump-sql # Execute migration php bin/console doctrine:schema:update --force
Step 5: Grant permissions
- Go to Sulu Admin โ Settings โ User Roles
- Find the appropriate role
- Enable permissions for "Events" and "Locations"
- Reload the page
๐ฃ Usage
Create your first event
- Navigate to Events in the Sulu admin navigation
- Click on Add event
- First, create at least one Location
- Then create your event with all the details
- Configure social media settings (optional)
- Set up recurrence patterns (optional)
- Publish your event
๐งถ Configuration
You can find the extensive configuration here: Settings
๐ Documentation
Detailed documentation in the docs/ directory.
- Calendar Integration - FullCalendar.js integration
- Social Media - Social sharing configuration
- Recurring Events - Recurring event patterns
- Feeds/iCal - Feeds and iCal handling
- Locations - Locations that are assigned to events
- Custom Event Types - Event types can be set by yourself
- List View - List View Tweaks
- List Transformer - Type transformer for lists
- Settings - Settings
๐ฉโ๐ณ Contributing
Contributions are welcome! Please create issues or pull requests.
๐ License
This bundle is licensed under the MIT License. See LICENSE.
๐ Credits
Created and maintained by manuxi.
Thanks to the Sulu team for the great CMS and fantastic support!
Thanks to FullCalendar for the calendar.
And thank you for your support and testing!
