Changeset 153296
- Timestamp:
- 09/09/2009 12:55:45 PM (16 years ago)
- Location:
- wow-armory/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
wow-armory/trunk/Readme.txt
r152272 r153296 4 4 Requires at least: 2.8 5 5 Tested up to: 2.8 6 Stable tag: 7.4 6 Stable tag: 7.4.1 7 7 8 8 Easily displays your character's stats from the Armory. … … 34 34 35 35 == Changelog == 36 37 = 7.4.1 = 38 39 * More image fixes... 36 40 37 41 = 7.4 = -
wow-armory/trunk/wow-armory.php
r152272 r153296 4 4 Plugin URI: http://timsworld.nfshost.com/wordpress-plugins/wow-armory-wp-plugin/ 5 5 Description: Shows your character's Armory info 6 Version: 7.4 6 Version: 7.4.1 7 7 Author: Tim (SeiferTim) Hely 8 8 Author URI: http://timsworld.nfshost.com … … 11 11 class WoWArmory extends WP_Widget { 12 12 var $plugin_folder = ''; 13 var$armoryPath = "wowarmory.com/_images";13 public static $armoryPath = "wowarmory.com/_images"; 14 14 public static $modelNames = array( 15 15 1 => array( … … 659 659 <tr> 660 660 <th scope="row" class="check-column"><input type="checkbox" name="delete[]" value="<?php echo $cache->option_name; ?>" /></th> 661 <td scope="row" style="text-align: left"><img src="http://<?php echo ($currentCache['realmType'] == "EU" ? 'eu' : 'www').'.'.$ this->armoryPath;?>/icons/race/<?php echo $char_attr['RACEID'].'-'.$char_attr['GENDERID']; ?>.gif"/> <img src="http://<?php echo ($currentCache['realmType'] == "EU" ? 'eu' : 'www').'.'.$this->armoryPath;?>/icons/class/<?php echo $char_attr['CLASSID']; ?>.gif" /> <?php echo $char_attr["NAME"]; ?></td>661 <td scope="row" style="text-align: left"><img src="http://<?php echo ($currentCache['realmType'] == "EU" ? 'eu' : 'www').'.'.$armory->armoryPath;?>/icons/race/<?php echo $char_attr['RACEID'].'-'.$char_attr['GENDERID']; ?>.gif"/> <img src="http://<?php echo ($currentCache['realmType'] == "EU" ? 'eu' : 'www').'.'.$armory->armoryPath;?>/icons/class/<?php echo $char_attr['CLASSID']; ?>.gif" /> <?php echo $char_attr["NAME"]; ?></td> 662 662 <td scope="row" style="text-align: left"><?php echo $char_attr["REALM"]; ?></td> 663 663 <td scope="row" style="width:60px;text-align: left"><?php echo $currentCache['realmType']; ?></td>
Note: See TracChangeset
for help on using the changeset viewer.