2017 © Pedro Peláez
 

symfony-bundle simple-edm-bundle

Symfony SimpleEdmBundle

image

kitpages/simple-edm-bundle

Symfony SimpleEdmBundle

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

KitpagesSimpleEdm

This is an electronic document manager for symfony., (*1)

Installation

use composer update, (*2)

add the new Bundle in app/appKernel.php, (*3)

You need to create a table in the database : launch command: php app/console doctrine:schema:update, (*4)

Step1: AppKernel.php Add the following entries to your autoloader: $bundles = array( ... new Kitpages\SimpleEdmBundle\KitpagesSimpleEdmBundle(), new Kitpages\FileSystemBundle\KitpagesFileSystemBundle(), new Kitpages\DataGridBundle\KitpagesDataGridBundle(), );, (*5)

Configuration example kitpagesFileSystemBundle

kitpages_file_system: file_system_list: kitpagesSimpleEdm: local: directory_public: %kernel.root_dir%/../web directory_private: %kernel.root_dir% base_url: %base_url%, (*6)

  • you should add something like that in your security.yml : role_hierarchy: ROLE_ADMIN: [ROLE_USER, ROLE_SIMPLEEDM_WRITER] ROLE_SIMPLEEDM_WRITER: ROLE_SIMPLEEDM_READER

The Versions