web/wp-content/plugins/gigs-calendar/templates/basic/upcoming-widget.php
author hurons@caf4f556-3d62-0410-8435-a86758001935
Tue, 05 Jan 2010 09:48:24 +0000
branchwordpress
changeset 111 6b96085291d7
parent 109 03b0d1493584
permissions -rw-r--r--
install and test "order-categories" plug-in

<?php if ( count($gigs) ) : ?>
	<ul class="gigs">
		<?php foreach ( $gigs as $g ) : 
			$link = array();
			foreach ( $args['link'] as $f ) {
				switch ( $f ) {
					case 'city': 
						$link[] = $g->cityState;
						break;
					case 'venue':
						$link[] = $g->name;
						break;
					case 'eventName':
						$link[] = $g->eventName;
						break;
				}
			}
			$link = array_unique($link);
			foreach ( $link  as $key => $value ) {
				if ( empty($value) ) unset($link[$key]);
			}
			?>
			<li class="<?php echo dtcGigs::get_gig_css_classes($g) ?>"><?php echo dtcGigs::dateFormat($g->mysqlDate . ' ' . $p->time, (date('Y') == date('Y', strtotime($g->mysqlDate))) ? $args['dateFormat'] : $args['dateFormatYear']) ?>: <a href="<?php echo $g->permalink; ?>">
				<?php echo implode(' - ', $link) ?>
			</a></li>
		<?php endforeach; ?>
	</ul>
<?php else : ?>
	<div class="no-gigs"><?php echo $options['no-upcoming']; ?></div>
<?php endif; ?>