ezsystems / ezplatform-link-manager
Links management for eZ Platform
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 23
Forks: 2
Type:ezplatform-bundle
Requires
- php: ~5.6|~7.0
- ezsystems/ezpublish-kernel: ^6.12
- ezsystems/platform-ui-bundle: ^1.12
- ezsystems/repository-forms: ^1.10
- twig/extensions: ~1.4
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-19 01:40:11 UTC
README
This package provides prototype of Public API and UI for links management in eZ Platform.
NOTE: This bundle is currently only integrating with eZ Platform UI 1.x, integration with 2.x is planned.
Features
- UI for an overview of all URLs with pagination and filtering
- UI for viewing details of a URL including basic information (address, status, last checked, created, modified date) and usages listing.
- UI for a URL editing
- Public API for links management
Installation
- Enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new EzSystems\EzPlatformLinkManagerBundle\EzPlatformLinkManagerBundle(), // ... ); // ... }
- Import routing files
# app/config/routing.yml _linkManager: resource: '@EzPlatformLinkManagerBundle/Resources/config/routing.yml'
- Require the bundle with composer
composer require ezsystems/ezplatform-link-manager:dev-master
- Done. You should be able to see "Link management" menu item under the
Admin
tab your administration panel.