Changeset 957347
- Timestamp:
- 07/30/2014 11:45:27 AM (12 years ago)
- Location:
- easy-wysiwyg-style/trunk
- Files:
-
- 3 added
- 5 edited
-
admin/class-easy-wysiwyg-style-admin.php (modified) (2 diffs)
-
admin/img/title.png (modified) (previous)
-
easy-wysiwyg-style.php (modified) (1 diff)
-
includes/class-easy-wysiwyg-style.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
tinymce (added)
-
tinymce/table (added)
-
tinymce/table/plugin.min.js (added)
Legend:
- Unmodified
- Added
- Removed
-
easy-wysiwyg-style/trunk/admin/class-easy-wysiwyg-style-admin.php
r957302 r957347 83 83 */ 84 84 function theme_mce_buttons_2( $buttons ) { 85 return array( 'formatselect', 'styleselect', 'code', '|', 'spellchecker', 'fullscreen', '|', 'wp_help', 'removeformat', 'charmap' ); 85 return array( 'formatselect', 'styleselect', 'underline', 'alignjustify', 'forecolor', 'code', 'pastetext','table', 'spellchecker', 'outdent', 86 'indent', 'wp_help', 'removeformat', 'charmap', 'undo', 'redo' ); 86 87 } 87 88 … … 99 100 } 100 101 102 /** 103 * Add table plugin to tinyMCE 104 * 105 * @return array 106 */ 107 function my_custom_tinymce_plugins () { 108 $plugins = array('table'); 109 $plugins_array = array(); 110 111 foreach ($plugins as $plugin ) { 112 $plugins_array[ $plugin ] = plugins_url('easy-wysiwyg-style/tinymce/') . $plugin . '/plugin.min.js'; 113 } 114 return $plugins_array; 115 } 116 117 101 118 } -
easy-wysiwyg-style/trunk/easy-wysiwyg-style.php
r957302 r957347 11 11 * Plugin Name: Easy Wysiwyg Style 12 12 * Plugin URI: http://wordpress.org/plugins/easy-wysiwyg-style/ 13 * Description: Allows you to view the styling of your theme in the Wysiwyg editor. 14 * Version: 1. 013 * Description: Allows you to view the styling of your theme in the Wysiwyg editor. Enhances your Wysiwyg and adds the insert table functionality 14 * Version: 1.1 15 15 * Author: Joaquin Ruiz 16 16 * Author URI: http://jokiruiz.com -
easy-wysiwyg-style/trunk/includes/class-easy-wysiwyg-style.php
r957302 r957347 102 102 $plugin = "easy-wysiwyg-style/easy-wysiwyg-style.php"; 103 103 $this->loader->add_filter( "plugin_action_links_$plugin" , $admin, 'ews_settings_link'); 104 105 $this->loader->add_filter('mce_external_plugins', $admin, 'my_custom_tinymce_plugins'); 104 106 } 105 107 -
easy-wysiwyg-style/trunk/readme.txt
r957302 r957347 10 10 11 11 The Easy Wysiwyg Style plugin allows you to see your styles in the editor in 12 real time. You won't need to press preview.12 real time. Enhances your Wysiwyg and adds the insert table functionality. 13 13 14 14 == Description == … … 16 16 The Easy Wysiwyg Style plugin allows you to see your styles in the editor in 17 17 real time. You won't need to press preview. 18 19 Enhances your Wysiwyg and adds the insert table functionality. 18 20 19 21 1. Open Settings -> Easy Wysiwyg Style … … 23 25 24 26 3. Specify the CSS file location in your theme (style.css , css/style.css) 27 28 **From v1.1** It adds the insert table functionality. 25 29 26 30 Do you use worpdress admin with an iPad? Don´t worry, this plugin is fully
Note: See TracChangeset
for help on using the changeset viewer.