PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.0.4
WP Coder – Insert & Manage Code Snippets v3.0.4
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
← All changes | includes/settings/3.js-code.php +45 -28 4.5.13.0.4 View file →
@@ -1,17 +1,15 @@
1 1 <?php
2 2 /*
3 - * Page Name: JS
3 + * Page Name: JS Code
4 4 */
5 5
6 6 use WPCoder\Dashboard\Field;
7 7 use WPCoder\Dashboard\FolderManager;
8 -use WPCoder\Dashboard\Option;
9 8
10 9 defined( 'ABSPATH' ) || exit;
11 10
12 11 $default = Field::getDefault();
13 -$opt = include( 'options/js-code.php' );
14 12
15 13 $js_link = '';
16 14 if ( ! empty( $default['js_code'] ) ) {
17 15 $js_link = FolderManager::path_upload_url() . 'script-' . $default['id'] . '.js';
@@ -17,42 +15,61 @@
17 15 $js_link = FolderManager::path_upload_url() . 'script-' . $default['id'] . '.js';
18 16 }
19 17
20 18 ?>
19 + <h4>
20 + <span class="wowp-icon wowp-icon-js"></span>
21 + <?php esc_html_e( 'JavaScript Code', 'wpcoder' ); ?>
22 + </h4>
21 23
22 - <div class="wowp-settings__page">
23 - <div class="wowp-settings__page-sidebar">
24 + <fieldset>
25 + <legend><?php esc_html_e( 'Settings', 'wpcoder' ); ?></legend>
24 26
25 - <?php Option::init( [
26 - $opt['jquery'],
27 - $opt['inline'],
28 - $opt['minified'],
29 - $opt['attributes'],
30 - ] ); ?>
27 + <div class="wowp-field has-chackbox">
28 + <span class="label"><?php esc_html_e( 'JQuery Dependency', 'wpcoder' ); ?></span>
29 + <?php Field::checkbox( '[jquery_dependency]' ); ?>
30 + <label for="jquery_dependency">Disable</label>
31 + </div>
31 32
32 - <button class="button-editor button" id="jsnav"><?php esc_html_e( 'Add NAV Comment', 'wp-coder' ); ?></button>
33 - <ol id="jsNavigationMenu" class="wowp-php-nav-menu"></ol>
33 + <div class="wowp-field has-chackbox">
34 + <span class="label"><?php esc_html_e( 'Inline', 'wpcoder' ); ?></span>
35 + <?php Field::checkbox( '[inline_js]' ); ?>
36 + <label for="inline_js">Enable</label>
37 + </div>
34 38
39 + <div class="wowp-field">
40 + <label for="js_attributes" class="label"><?php esc_html_e( 'Minified', 'wpcoder' ); ?></label>
41 + <?php Field::select( '[minified_js]', 'obfuscate', [
42 + 'none' => 'none',
43 + 'minify' => 'Minify',
44 + 'obfuscate' => 'Obfuscate'
45 + ] ); ?>
35 46 </div>
36 - <div class="wowp-settings__page-content">
37 - <?php Field::textarea( 'js_code' ); ?>
38 47
39 - <div class="wowp-notification notification-info">
40 - Just enter the JavaScript content. You don’t need to include <code>&lt;script&gt;</code> — it's already on the page.
41 - </div>
48 + <div class="wowp-field">
49 + <label for="js_attributes" class="label"><?php esc_html_e( 'Attribute', 'wpcoder' ); ?></label>
50 + <?php Field::select( '[js_attributes]', null, [
51 + 0 => 'none',
52 + 'defer' => 'defer',
53 + 'async' => 'async'
54 + ] ); ?>
55 + </div>
42 56
43 - <?php if ( ! empty( $js_link ) ): ?>
44 - <div class="wowp-field has-addon">
45 - <span class="label"><?php esc_html_e( 'JS File URL', 'wp-coder' ); ?></span>
46 - <label for="tag" class="label is-addon"><span
47 - class="dashicons dashicons-admin-links"></span></label>
48 - <input type="url" id="url-js-file" readonly="readonly" value="<?php echo esc_url( $js_link ); ?>">
49 - </div>
50 - <?php endif; ?>
57 + </fieldset>
51 58
52 59
60 +<?php Field::textarea( 'js_code' ); ?>
61 +
62 +<?php if ( ! empty( $js_link ) ): ?>
63 + <div class="wowp-fields-group has-mt">
64 + <div class="wowp-field is-full has-addon border-default">
65 + <label for="url-css-file" class="is-addon">
66 + <span class="dashicons dashicons-admin-links"></span>
67 + </label>
68 + <input type="url" id="url-css-file" readonly="readonly" value="<?php echo esc_url( $js_link ); ?>">
69 + <span class="label"><?php esc_html_e( 'URL to the JS file', 'wpcoder' ); ?></span>
53 70 </div>
54 71 </div>
72 +<?php endif; ?>
55 73
74 +
56 75 <?php
57 -
58 -