rovak / codemirror
CodeMirror Module for Zend Framework 2
dev-master
2012-12-15 17:33 UTC
Requires
This package is not auto-updated.
Last update: 2026-03-14 19:56:24 UTC
README
CodeMirror intergration module for Zend Framework 2
Introduction
This module adds a view helper that enables you to easily add a codemirror editor to your website. It will add the required javascript files including any dependent mode files and adds a init function which will load the editor.
Requirements
Installation
Configure the lib_path inside module.config.php
to point to the root of the CodeMirror library
Usage
The headScript, headLink and inlineScript view helpers are required to be outputted in your view
<?php $this->codemirror($code, 'php'); ?>
Supported modes
- PHP
- HTML
- CSS
- XML
- Javascript
You can add more modes by adding them to the module.config.php file. Please submit a PR if you do so!