aboutsummaryrefslogtreecommitdiff
path: root/views/default/entities/entity_listing.php
blob: 11d1edcda5f909e0187c2507141fb6d42d106f9e (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="listing entity_listing">
	<div class="icon">
		<?php echo $vars['icon']; ?>
	</div>
	<div class="info">
		<?php echo $vars['info']; ?>
	</div>
</div>