Plugin Directory

Changeset 2640321


Ignore:
Timestamp:
12/07/2021 01:50:40 AM (4 years ago)
Author:
code9fair
Message:

Extract single static file to multiple files.

Location:
code9/trunk
Files:
30 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • code9/trunk/assets/code9.css

    r2640317 r2640321  
    644644}
    645645
     646#adminmenuwrap {
     647  min-height: 100vh;
     648}
    646649/*# sourceMappingURL=code9.css.map */
  • code9/trunk/code9.php

    r2640310 r2640321  
    44Plugin URI: https://wordpress.org/plugins/code9/
    55Description: Utility tool for wordpress. 2-step verificatoin code user login.
    6 Version:     1.0.6
     6Version:     1.0.7
    77Author:      Code9Fair
    88Author URI: https://paypal.me/code9fair/
  • code9/trunk/page/dashboard.php

    r2640317 r2640321  
    55  wp_enqueue_style('code9-style', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/code9.css', array(), '1.0.1');
    66  wp_enqueue_style('gridjs_mermaid', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/mermaid.min.css');
    7   wp_enqueue_style('code9-static-css', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/c9_static.1.0.1.min.css', array(), '1.0.2');
    87  wp_enqueue_style( 'wp-color-picker' );
    98  wp_enqueue_style( 'code-editor' );
     9
     10  $css = ['evil-icons.css', 'material-icon-font.css','materialdesignicons.min.css', 'icofont.min.css'];
     11
     12  foreach($css as $name) {
     13    wp_enqueue_style($name, $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/'. $name, array());
     14  }
    1015 
    1116  wp_enqueue_script('code9-spa', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/spa.js');
    1217  wp_enqueue_script('gridjs', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/gridjs.umd.js');
    13   wp_enqueue_script('code9-static-js', $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/c9_static.1.0.1.min.js', array(), '1.0.2');
     18
     19  $js = ['language.js','crypto-js.min.js', 'aes.min.js', 'lzutf8.min.js','crypto.js','cookie.js','api.js','query.js','string_random.js','form_obj.js','dom_loading.js','slider.js'];
     20
     21  foreach($js as $name) {
     22    wp_enqueue_script($name, $GLOBALS['CODE9_PLUGIN_URL'] . 'assets/' . $name, array());
     23  }
     24 
    1425  wp_enqueue_script( 'code-editor' );
    1526  wp_enqueue_script( 'csslint' );
  • code9/trunk/readme.txt

    r2640310 r2640321  
    55Requires at least: 4.1
    66Tested up to: 5.8
    7 Stable tag: 1.0.6
     7Stable tag: 1.0.7
    88Requires PHP: 5.6.4
    99License: GPLv2
     
    6565= 1.0.6 =
    6666* Add 2 step verification code blocking time setting.
     67= 1.0.7 =
     68* Extract single static file to multiple files.
Note: See TracChangeset for help on using the changeset viewer.