PluginProbe
Wp-Insert / 2.0
Wp-Insert v2.0
trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.3.0 1.3.1 1.3.3 1.4 1.5.0 1.5.1 1.5.2 1.5.3 1.6.0 1.6.1 1.6.2 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 2.0 All 63 releases
wp-insert / includes / common / styles.php

styles.php in Wp-Insert 2.0, at includes/common/styles.php

18 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function wp_insert_admin_styles() {
3 wp_enqueue_style('wp-insert-styles', WP_INSERT_URL.'/includes/common/css/style.css', false);
4 wp_enqueue_style('thickbox');
5 wp_enqueue_script('common');
6 wp_enqueue_script('jquery-ui-tabs');
7 wp_enqueue_script('wp-lists');
8 wp_enqueue_script('postbox');
9 wp_enqueue_script('media-upload');
10 wp_enqueue_script('thickbox');
11 wp_enqueue_script('colorbox', WP_INSERT_URL.'/includes/common/js/jquery.colorbox-min.js', array('jquery'));
12 wp_enqueue_script('better-checkboxes', WP_INSERT_URL.'/includes/common/js/jquery.tzCheckbox.js', array('jquery'));
13 wp_enqueue_script('iphone-checkboxes', WP_INSERT_URL.'/includes/common/js/iphone-style-checkboxes.js', array('jquery'));
14 wp_enqueue_script('jquery-vertical-tabs', WP_INSERT_URL.'/includes/common/js/jquery-jvert-tabs-1.1.4.js', array('jquery'));
15 wp_enqueue_script('nicEdit', WP_INSERT_URL.'/includes/common/js/nicEdit-latest.js', array('jquery'));
16 wp_enqueue_script('image-uploader', WP_INSERT_URL.'/includes/common/js/wp-insert-functions.js', array('jquery'));
17 }
18 ?>