| @@ -1,15 +1,17 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | /* |
| 3 | - * Page Name: JS Code | |
| 3 | + * Page Name: JS | |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | 6 | use WPCoder\Dashboard\Field; |
| 7 | 7 | use WPCoder\Dashboard\FolderManager; |
| 8 | +use WPCoder\Dashboard\Option; | |
| 8 | 9 | |
| 9 | 10 | defined( 'ABSPATH' ) || exit; |
| 10 | 11 | |
| 11 | 12 | $default = Field::getDefault(); |
| 13 | +$opt = include( 'options/js-code.php' ); | |
| 12 | 14 | |
| 13 | 15 | $js_link = ''; |
| 14 | 16 | if ( ! empty( $default['js_code'] ) ) { |
| 15 | 17 | $js_link = FolderManager::path_upload_url() . 'script-' . $default['id'] . '.js'; |
| @@ -16,9 +18,9 @@ | ||
| 16 | 18 | } |
| 17 | 19 | |
| 18 | 20 | ?> |
| 19 | 21 | <h4> |
| 20 | - <span class="wowp-icon wowp-icon-js"></span> | |
| 22 | + <span class="codericon codericon-filetype-js"></span> | |
| 21 | 23 | <?php esc_html_e( 'JavaScript Code', 'wpcoder' ); ?> |
| 22 | 24 | </h4> |
| 23 | 25 | |
| 24 | 26 | <fieldset> |
| @@ -23,43 +25,28 @@ | ||
| 23 | 25 | |
| 24 | 26 | <fieldset> |
| 25 | 27 | <legend><?php esc_html_e( 'Settings', 'wpcoder' ); ?></legend> |
| 26 | 28 | |
| 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> | |
| 29 | + <?php Option::init( [ | |
| 30 | + $opt['jquery'], | |
| 31 | + $opt['inline'], | |
| 32 | + $opt['minified'], | |
| 33 | + $opt['attributes'], | |
| 34 | + ] ); ?> | |
| 32 | 35 | |
| 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> | |
| 36 | + </fieldset> | |
| 38 | 37 | |
| 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 | - ] ); ?> | |
| 46 | - </div> | |
| 38 | + <div class="wowp-field is-full wowp-code-nav "> | |
| 39 | + <ol id="jsNavigationMenu" class="wowp-php-nav-menu"></ol> | |
| 40 | + <span class="button-editor" id="jsnav">Add NAV Comment</span> | |
| 41 | + </div> | |
| 47 | 42 | |
| 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> | |
| 43 | +<?php Option::init( [ $opt['js_code'] ] ); ?> | |
| 56 | 44 | |
| 57 | - </fieldset> | |
| 45 | + <div class="wowp-notification -warning"> | |
| 46 | + Please input only the JavaScript content, omitting the <code>script</code> tag | |
| 47 | + </div> | |
| 58 | 48 | |
| 59 | - | |
| 60 | -<?php Field::textarea( 'js_code' ); ?> | |
| 61 | - | |
| 62 | 49 | <?php if ( ! empty( $js_link ) ): ?> |
| 63 | 50 | <div class="wowp-fields-group has-mt"> |
| 64 | 51 | <div class="wowp-field is-full has-addon border-default"> |
| 65 | 52 | <label for="url-css-file" class="is-addon"> |
| @@ -68,8 +55,6 @@ | ||
| 68 | 55 | <input type="url" id="url-css-file" readonly="readonly" value="<?php echo esc_url( $js_link ); ?>"> |
| 69 | 56 | <span class="label"><?php esc_html_e( 'URL to the JS file', 'wpcoder' ); ?></span> |
| 70 | 57 | </div> |
| 71 | 58 | </div> |
| 72 | -<?php endif; ?> | |
| 59 | +<?php endif; | |
| 73 | 60 | |
| 74 | - | |
| 75 | -<?php | |