Skip to content

Instantly share code, notes, and snippets.

View cooperaj's full-sized avatar

Adam Cooper cooperaj

View GitHub Profile
@cooperaj
cooperaj / view-wow-armory-character.php
Created October 11, 2012 11:04
Gnarly view code. Any Ideas
<?php if ($options['show_feed']) : ?>
<div class="armory_section armory_feed">
<h4><?php _e('Recent Activity', 'wow_armory_character'); ?></h4>
<ul class="armory_feed_list">
<?php $feed_icons = ($options['show_feed'] & WoW_Armory_Character_Plugin::STYLE_FEED_ICONS) === WoW_Armory_Character_Plugin::STYLE_FEED_ICONS;
$feed_achiev = ($options['show_feed'] & WoW_Armory_Character_Plugin::STYLE_FEED_ACHIEVEMENTS) === WoW_Armory_Character_Plugin::STYLE_FEED_ACHIEVEMENTS;
$feed_criteria = ($options['show_feed'] & WoW_Armory_Character_Plugin::STYLE_FEED_CRITERIA) === WoW_Armory_Character_Plugin::STYLE_FEED_CRITERIA;
$feed_loot = ($options['show_feed'] & WoW_Armory_Character_Plugin::STYLE_FEED_ITEMS) === WoW_Armory_Character_Plugin::STYLE_FEED_ITEMS;
$feed_items = $character->get_activity_feed_items(5); // return a max of 5 of each type.