solution/code-mirror-bundle

This Bundle integrates CodeMirror editor into a Symfony2 project.

Installs: 746

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 17

Open Issues: 1

Language:JavaScript

Type:symfony-bundle

dev-master 2013-06-03 14:18 UTC

This package is not auto-updated.

Last update: 2024-04-13 12:01:37 UTC


README

Bundle not yet ready.

Integration CodeMirror editor in you symfony2 project.

###Install

Just add the following line to your projects composer.json require section, and update vendors:

"solution/code-mirror-bundle": "dev-master"

Enable bundle , add to AppKernel.php:

 new Solution\CodeMirrorBundle\SolutionCodeMirrorBundle()

###Configuration Add default parameters to config.yml:

twig:
    form:
        resources:
            - 'SolutionCodeMirrorBundle:Form:redactor_widget.html.twig'

solution_code_mirror:
    parameters:
      mode: text/html
      lineNumbers: true
      lineWrapping: true
    mode_dirs:
      - @SolutionCodeMirrorBundle/Resources/public/js/mode
    themes_dirs:
      - @SolutionCodeMirrorBundle/Resources/public/css/theme

Install assets:

$ ./app/console assets:install web --symlink

###Usage

 $builder->add('content', 'code_mirror', array(
    'required' => true,
    'parameters' => array(
         'lineNumbers' => 'true'
     )
 ));