rovak / codemirror
CodeMirror Module for Zend Framework 2
Installs: 29
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:module
Requires
This package is not auto-updated.
Last update: 2024-12-21 14:12:35 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!