aboutsummaryrefslogtreecommitdiff
path: root/views/default/entities/entity_listing.php
blob: 6e0d9c0f8fb872bbece1f37a02cca3570ee74c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/**
 * Generic display for a single entity in list view.
 *
 * @package Elgg
 * @subpackage Core
 *
 * @uses string $vars['icon'] Full icon HTML to display.
 * @uses string $vars['info'] Info about the entity.
 */
?>
<div class="entity_listing clearfloat">
	<div class="entity_listing_icon">
		<?php echo $vars['icon']; ?>
	</div>
	<div class="entity_listing_info">
		<?php echo $vars['info']; ?>
	</div>
</div>