Changeset 191173
- Timestamp:
- 01/07/2010 06:58:51 PM (16 years ago)
- Location:
- save-simfany-any-video-embedder/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
simfany.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
save-simfany-any-video-embedder/trunk/readme.txt
r171772 r191173 5 5 Requires at least: 2.8.5 6 6 Tested up to: 2.8.5 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 9 9 This plugin allows you to quickly embed videos into your posts, pages or comments using custom player size. … … 43 43 == Changelog == 44 44 45 = 1.1 = 46 * A couple of paths related issues resolved. 47 45 48 = 1.0 = 46 49 * Initial release. -
save-simfany-any-video-embedder/trunk/simfany.php
r171724 r191173 11 11 define('SIMFANY_VERSION', '1.0'); 12 12 13 $folder = '/wp-content/plugins/s imfany';14 @include_once( ABSPATH . '/wp-content/plugins/simfany/simfany_api.php' );13 $folder = '/wp-content/plugins/save-simfany-any-video-embedder'; 14 @include_once( ABSPATH . $folder . '/simfany_api.php' ); 15 15 16 16 function simfany_config_page() { … … 113 113 </table> 114 114 <p class="submit"><input type="submit" class="button-primary" value="Save Changes" name="send"></p> 115 115 116 116 </form> 117 117 </div> … … 141 141 if($simfany_video=="video") 142 142 { 143 $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/s imfany/tinymce/editor_plugin.js';143 $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/save-simfany-any-video-embedder/tinymce/editor_plugin.js'; 144 144 } 145 145 if($simfany_video=="simfany") 146 146 { 147 $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/s imfany/tinymce/editor_plugin2.js';147 $plugin_array['simfany'] = get_bloginfo('wpurl').'/wp-content/plugins/save-simfany-any-video-embedder/tinymce/editor_plugin2.js'; 148 148 } 149 149 return $plugin_array; … … 152 152 153 153 function simfany_plugin_action_links( $links, $file ) { 154 154 155 155 156 156 $url = "options-general.php?page=simfany-config"; … … 173 173 174 174 function add_button(){ 175 175 176 176 wp_print_scripts( 'quicktags' ); 177 177 … … 200 200 echo "/* ]]> */"."\n"; 201 201 echo "</script>"."\n"; 202 202 203 203 } 204 204 add_filter( 'content_save_pre', 'simfany_api_input' );
Note: See TracChangeset
for help on using the changeset viewer.