123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- imports:
- - { resource: parameters.yml }
- - { resource: security.yml }
- - { resource: assetic.yml }
- - { resource: services.yml }
-
- - { resource: mopa/mopa_bootstrap.yml }
-
-
- - { resource: fos/fos_user.yml }
-
-
- - { resource: sonata/sonata_block.yml }
- - { resource: sonata/sonata_formatter.yml }
- - { resource: sonata/sonata_cache.yml }
- - { resource: sonata/sonata_seo.yml }
- - { resource: sonata/sonata_intl.yml }
- - { resource: sonata/sonata_core.yml }
- - { resource: sonata/sonata_user.yml }
-
- - { resource: sonata/sonata_admin.yml }
- - { resource: sonata/sonata_page.yml }
- - { resource: sonata/sonata_media.yml }
- - { resource: sonata/sonata_translation.yml }
- - { resource: sonata/sonata_classification.yml }
- - { resource: sonata/sonata_timeline.yml }
- - { resource: ivory_ckeditor.yml }
- parameters:
- locale: en
- framework:
-
- translator: { fallbacks: ["%locale%"] }
- secret: "%secret%"
- router:
- resource: "%kernel.root_dir%/config/routing.yml"
- strict_requirements: ~
- form: ~
- csrf_protection: ~
- validation: { enable_annotations: true }
-
- templating:
- engines: ['twig']
-
- default_locale: "%locale%"
- trusted_hosts: ~
- trusted_proxies: ~
- session:
-
- handler_id: ~
- name: ch_sid
- fragments: ~
- http_method_override: true
- theodo_evolution_session:
- bag_manager_service: theodo_evolution.session.symfony1.bag_manager
- bag_configuration_service: theodo_evolution.session.symfony1.bag_manager_configuration
- twig:
- debug: "%kernel.debug%"
- strict_variables: "%kernel.debug%"
- base_template_class: Sonata\CacheBundle\Twig\TwigTemplate14
- form:
- resources:
- - 'bootstrap_3_horizontal_layout.html.twig'
- - 'SonataFormatterBundle:Form:formatter.html.twig'
- - 'SonataMediaBundle:Form:media_widgets.html.twig'
- - 'SonataCoreBundle:Form:datepicker.html.twig'
- exception_controller: 'FOS\RestBundle\Controller\ExceptionController::showAction'
- globals:
- show_toolbar: true
- show_footer: true
- software_name: Chamilo
- version: 2
- session_teachers:
- teachers:
- news_counter:
- news_list:
- messages_count:
- message_link:
- is_profile_editable:
- plugin_footer_left:
- plugin_footer_center:
- plugin_content_bottom:
- plugin_header_left:
- plugin_header_center:
- plugin_header_right:
- plugin_header_main:
- plugin_menu_bottom:
- plugin_menu_top:
- plugin_content_top:
- plugin_footer_right:
- footer_extra_content:
- course_session_block:
- show_course_shortcut:
- show_course_navigation_menu:
- actions:
- header:
- message:
- show_media_element: 1
- assetic:
- debug: "%kernel.debug%"
- use_controller: false
- bundles: [ ]
-
- filters:
- cssrewrite: ~
-
-
-
-
- doctrine:
- dbal:
- default_connection: default
- connections:
- default:
- driver: pdo_mysql
- host: "%database_host%"
- port: "%database_port%"
- dbname: "%database_name%"
- user: "%database_user%"
- password: "%database_password%"
- charset: UTF8
-
-
-
-
-
-
- types:
- json: Sonata\Doctrine\Types\JsonType
- orm:
- auto_generate_proxy_classes: "%kernel.debug%"
- default_entity_manager: default
-
- entity_managers:
- default:
- auto_mapping: true
- mappings: ~
- swiftmailer:
- transport: "%mailer_transport%"
- host: "%mailer_host%"
- username: "%mailer_user%"
- password: "%mailer_password%"
- spool: { type: memory }
- doctrine_migrations:
- dir_name: %kernel.root_dir%/../app/Migrations/Schema/V111
- namespace: Application\Migrations\Schema\V111
- table_name: version
- name: Chamilo Migrations
- stof_doctrine_extensions:
- default_locale: "%locale%"
- translation_fallback: true
- orm:
- default:
- tree: true
- timestampable: true
- sluggable: true
- sortable: true
- fm_elfinder:
- assets_path: /chamilo_master/web/assets
- instances:
- default:
- locale: %locale%
- editor: ckeditor
- fullscreen: true
- theme: smoothness
- include_assets: true
- connector:
- debug: false
- roots:
- local:
- driver: Flysystem
- path: uploads
- flysystem:
- type: local
- options:
- local:
- path: %kernel.root_dir%/../web/media/
- upload_allow: ['all']
-
-
- upload_max_size: 2M
- knp_menu:
- twig: true
- sonata_doctrine_orm_admin:
- audit:
- force: false
|