Changeset 523469
- Timestamp:
- 03/25/2012 07:17:57 PM (14 years ago)
- Location:
- web-fonts/trunk
- Files:
-
- 3 added
- 5 edited
-
readme.txt (modified) (1 diff)
-
resources/backend/img (added)
-
resources/backend/img/web-fonts-16.png (added)
-
resources/backend/img/web-fonts-30.png (added)
-
resources/backend/web-fonts.css (modified) (1 diff)
-
views/backend/settings/overview.php (modified) (1 diff)
-
views/backend/settings/settings.php (modified) (1 diff)
-
web-fonts.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
web-fonts/trunk/readme.txt
r519000 r523469 93 93 == Changelog == 94 94 95 = 1.1.3 = 96 * Added web fonts icon designed and built by R. York Funston (http://www.ryarts.com/) 97 95 98 = 1.1.2 = 96 99 * 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 1 5 .web-fonts-font-providers-list { 2 6 list-style: disc; -
web-fonts/trunk/views/backend/settings/overview.php
r506311 r523469 1 1 <div class="wrap"> 2 <?php screen_icon(); ?> 3 2 4 <h2><?php _e('Web Fonts - Manage Stylesheet'); ?></h2> 3 5 -
web-fonts/trunk/views/backend/settings/settings.php
r507433 r523469 1 1 <div class="wrap"> 2 <?php screen_icon(); ?> 3 2 4 <h2><?php printf(__('Web Fonts - %s'), call_user_func(array($provider_class_name, 'get_provider_name'))); ?></h2> 3 5 -
web-fonts/trunk/web-fonts.php
r518998 r523469 4 4 Plugin URI: http://webfonts.fonts.com 5 5 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. 26 Version: 1.1.3 7 7 Author: Nick Ohrn of Plugin-Developer.com 8 8 Author URI: http://plugin-developer.com/ … … 14 14 15 15 //// VERSION 16 const VERSION = '1.1. 2';16 const VERSION = '1.1.3'; 17 17 18 18 //// KEYS … … 50 50 public static function add_administrative_interface_items() { 51 51 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__)); 53 53 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')); 54 54
Note: See TracChangeset
for help on using the changeset viewer.