Plugin Directory

Changeset 2504168


Ignore:
Timestamp:
03/26/2021 07:10:42 PM (5 years ago)
Author:
cynderhost
Message:

Updated branding

Location:
cynderhost
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cynderhost/trunk/README.txt

    r2468359 r2504168  
    44Tags: cache, performance, cynderhost
    55Requires at least: 4.0.1
    6 Tested up to: 5.6
    7 Stable tag: 5.6
     6Tested up to: 5.7
     7Stable tag: 5.7
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3232
    3333== Changelog ==
     34- 1.4.7 =
     35* Updated: WP Admin Icon
     36* Updated: Plugin Icon
     37* Added: admin-style.css stylesheet for future styling
    3438
    3539= 1.4.6 =
  • cynderhost/trunk/cynderhost.php

    r2468359 r2504168  
    99 * Plugin URI:        https://cynderhost.com
    1010 * Description:       Provides an easy interface to clear the CynderHost CDN cache, both automatically and programmatically.
    11  * Version:           1.4.6
     11 * Version:           1.4.7
    1212 * Author:            CynderHost
    1313 * Author URI:        https://profiles.wordpress.org/cynderhost/
     
    2424
    2525//Define version
    26 define('CYNDERHOST_VERSION', '1.4.6');
     26define('CYNDERHOST_VERSION', '1.4.7');
     27
     28/**
     29 *  Load menu stylesheet for WP Admin CynderHost Icon
     30 */
     31function cynderhost_load_admin_style() {
     32    wp_enqueue_style( 'cynderhost_admin_css', plugins_url( '/css/admin-style.css' ,  __FILE__ ), $ver = "1.0.0");
     33}
     34add_action( 'admin_enqueue_scripts', 'cynderhost_load_admin_style' );
     35
    2736
    2837/**
     
    444453            'cynderhost_cdn_settings_create_admin_page'
    445454        ) , // function
    446         'dashicons-networking', // icon_url
     455        plugins_url( '/img/menu_icon.png' ,  __FILE__ ), // icon_url
    447456        81
    448457        // position
Note: See TracChangeset for help on using the changeset viewer.