| 1 |
<?php |
| 2 |
/* |
| 3 |
* Page Name: JS Code |
| 4 |
*/ |
| 5 |
|
| 6 |
use WPCoder\Dashboard\Field; |
| 7 |
use WPCoder\Dashboard\FolderManager; |
| 8 |
|
| 9 |
defined( 'ABSPATH' ) || exit; |
| 10 |
|
| 11 |
$default = Field::getDefault(); |
| 12 |
|
| 13 |
$js_link = ''; |
| 14 |
if ( ! empty( $default['js_code'] ) ) { |
| 15 |
$js_link = FolderManager::path_upload_url() . 'script-' . $default['id'] . '.js'; |
| 16 |
} |
| 17 |
|
| 18 |
?> |
| 19 |
<h4> |
| 20 |
<span class="wowp-icon wowp-icon-js"></span> |
| 21 |
<?php esc_html_e( 'JavaScript Code', 'wpcoder' ); ?> |
| 22 |
</h4> |
| 23 |
|
| 24 |
<fieldset> |
| 25 |
<legend><?php esc_html_e( 'Settings', 'wpcoder' ); ?></legend> |
| 26 |
|
| 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> |
| 32 |
|
| 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> |
| 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 |
] ); ?> |
| 46 |
</div> |
| 47 |
|
| 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> |
| 56 |
|
| 57 |
</fieldset> |
| 58 |
|
| 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> |
| 70 |
</div> |
| 71 |
</div> |
| 72 |
<?php endif; ?> |
| 73 |
|
| 74 |
|
| 75 |
<?php |
| 76 |
|