Logs Ui

Symfony bundle dedicated to eZ Platform, to add a log management interface to the back office.

EzPlatformLogsUiBundle

Symfony bundle dedicated to eZ Platform, to add a log management interface to the back office.

Details:

  • Author: Florian Bouché
  • Licence: MIT

Requirements

  • php: ^7.1.3
  • ezsystems/ezplatform: 2.5.*
  • ezsystems/ezplatform-admin-ui: ^1.5

⚠️ Warning, in its current version, the bundle only supports log files in Monolog/LineFormatter format.
LineFormatter from Github

Installation

Step 1: Download the Bundle

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

$ composer require fkeloks/ezplatform-logs-ui

This command requires you to have Composer installed globally, as explained in the installation chapter of the Composer documentation.

Step 2: Enable the Bundle

Then, enable the bundle by adding it to the list of registered bundles in the app/AppKernel.php file of your project:

// app/AppKernel.php

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new EzPlatformLogsUi\Bundle\EzPlatformLogsUiBundle(),
        ];
    }
}

Step 3: Import EzPlatformLogsUi routing files

Now that you have activated and configured the bundle, all that is left to do is import the EzPlatformLogsUi routing files.

# app/config/routing.yml

# EzPlatformLogsUiBundle
_ezplatform_logs_ui:
    resource: "@EzPlatformLogsUiBundle/Resources/config/routing.yml"
    prefix: /

Created by:

Categories:

Downloads:

1

Stars:

1

Forks:

0

Created:

Updated: