Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 318 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 318 Bytes

ConfigurationBundle

A bundle which allow you to easily store you application configuration.

Usage

  1. ** In a controller **

    $sitename = $this->container->get('openify.configuration')->get('site_name');
  2. ** In a view **

    {{ openify_configuration.get('site_name') }}