Skip to content

Instantly share code, notes, and snippets.

@RalfAlbert
Created November 14, 2011 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save RalfAlbert/1363140 to your computer and use it in GitHub Desktop.
Save RalfAlbert/1363140 to your computer and use it in GitHub Desktop.
WP Advanced Code Editor (new version)
<?php
/*
Plugin Name: WP Advanced Code Editor
Plugin URI: http://www.techlyzer.com/wp-advanced-code-editor
Description: Integrates the EasyArea advanced code editor to WordPress, complete with syntax hilighting, line numbering, and full screen editing! Not compatabile with the WYSIWYG editor. Turn it off!
Author: John Kolbert
Version: 1.0
Author URI: http://www.techlyzer.com/
Copyright Notice
Portions of this plugin file Copyright © 2008 by Techlyzer.com
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=========EditArea===========
The EditArea script was entirely written by Christophe Dolivet (http://www.cdolivet.net/editarea/)
and released under the GNU Lesser General Public License. Its license can be found here:
http://www.gnu.org/copyleft/lesser.html. Its license agreement remains entact.
============================
*/
add_action( 'dbx_post_advanced', 'advanced_post_editor' );
function advanced_post_editor(){
wp_enqueue_script( 'advanced_post_editor_script', plugins_url('/edit_area/edit_area_full.js', __FILE__ ), array(), false, true );
wp_enqueue_script( 'advanced_post_editor_init', plugins_url('/edit_area_init.js', __FILE__ ), array( 'advanced_post_editor_script' ), false, false );
}
editAreaLoader.init({
id : "content" // textarea id
,syntax: "html" // syntax to be uses for highgliting
,start_highlight: true // to display with highlight mode on start-up
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment