Plugin Directory

Changeset 523469


Ignore:
Timestamp:
03/25/2012 07:17:57 PM (14 years ago)
Author:
nickohrn
Message:

Added an icon for the plugin page and menu item.

Location:
web-fonts/trunk
Files:
3 added
5 edited

Legend:

Unmodified
Added
Removed
  • web-fonts/trunk/readme.txt

    r519000 r523469  
    9393== Changelog ==
    9494
     95= 1.1.3 =
     96* Added web fonts icon designed and built by R. York Funston (http://www.ryarts.com/)
     97
    9598= 1.1.2 =
    9699* Modified readme so text wouldn't get cut off on the plugin page
  • web-fonts/trunk/resources/backend/web-fonts.css

    r492472 r523469  
     1#icon-web-fonts {
     2    background: transparent url(img/web-fonts-30.png) no-repeat center center;
     3}
     4
    15.web-fonts-font-providers-list {
    26    list-style: disc;
  • web-fonts/trunk/views/backend/settings/overview.php

    r506311 r523469  
    11<div class="wrap">
     2    <?php screen_icon(); ?>
     3
    24    <h2><?php _e('Web Fonts - Manage Stylesheet'); ?></h2>
    35   
  • web-fonts/trunk/views/backend/settings/settings.php

    r507433 r523469  
    11<div class="wrap">
     2    <?php screen_icon(); ?>
     3
    24    <h2><?php printf(__('Web Fonts - %s'), call_user_func(array($provider_class_name, 'get_provider_name'))); ?></h2>
    35   
  • web-fonts/trunk/web-fonts.php

    r518998 r523469  
    44 Plugin URI: http://webfonts.fonts.com
    55 Description: The canonical Web Fonts plugin for WordPress. This plugin includes support for Fonts.com and Google web fonts and supports a variety of web font providers via an easy to implement plugin architecture.
    6  Version: 1.1.2
     6 Version: 1.1.3
    77 Author: Nick Ohrn of Plugin-Developer.com
    88 Author URI: http://plugin-developer.com/
     
    1414       
    1515        //// VERSION
    16         const VERSION = '1.1.2';
     16        const VERSION = '1.1.3';
    1717       
    1818        //// KEYS
     
    5050        public static function add_administrative_interface_items() {
    5151            if(!empty(self::$registered_providers)) {
    52                 self::$admin_page_hooks[] = $settings = add_menu_page(__('Web Fonts'), __('Web Fonts'), 'manage_options', self::SETTINGS_PAGE_SLUG, array(__CLASS__, 'display_stylesheet_page'));
     52                self::$admin_page_hooks[] = $settings = add_menu_page(__('Web Fonts'), __('Web Fonts'), 'manage_options', self::SETTINGS_PAGE_SLUG, array(__CLASS__, 'display_stylesheet_page'), plugins_url('resources/backend/img/web-fonts-16.png', __FILE__));
    5353                self::$admin_page_hooks[] = $stylesheet = add_submenu_page(self::SETTINGS_PAGE_SLUG, __('Manage Web Font Stylesheet'), __('Manage Stylesheet'), 'manage_options', 'web-fonts', array(__CLASS__, 'display_stylesheet_page'));
    5454               
Note: See TracChangeset for help on using the changeset viewer.