ezsystems/ezplatform-link-manager

Links management for eZ Platform

dev-master / 1.0.x-dev 2017-12-11 16:03 UTC

This package is auto-updated.

Last update: 2024-04-19 00:31:15 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

  1. Enable the bundle in the kernel:
<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new EzSystems\EzPlatformLinkManagerBundle\EzPlatformLinkManagerBundle(),  
        // ...
    );
    
    // ...
}
  1. Import routing files
# app/config/routing.yml

_linkManager:
    resource: '@EzPlatformLinkManagerBundle/Resources/config/routing.yml'
  1. Require the bundle with composer
composer require ezsystems/ezplatform-link-manager:dev-master
  1. Done. You should be able to see "Link management" menu item under the Admin tab your administration panel.