1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php
$icons = array(
'arrow-left',
'arrow-right',
'arrow-two-head',
'calendar',
'checkmark',
'clip',
'cursor-drag-arrow',
'delete-alt',
'delete',
'download',
'facebook',
'home',
'hover-menu',
'link',
'mail-alt',
'mail',
'print-alt',
'print',
'push-pin-alt',
'push-pin',
'redo',
'refresh',
'round-arrow-left',
'round-arrow-right',
'round-checkmark',
'round-minus',
'round-plus',
'rss',
'search-focus',
'search',
'settings-alt',
'settings',
'share',
'shop-cart',
'speech-bubble-alt',
'speech-bubble',
'star-alt',
'star-empty',
'star',
'tag',
'thumbs-down-alt',
'thumbs-down',
'thumbs-up-alt',
'thumbs-up',
'trash',
'twitter',
'undo',
'user',
'users',
);
?>
<ul class="elgg-gallery">
<?php
foreach ($icons as $icon) {
echo "<li title=\".elgg-icon-$icon\" style=\"margin:10px\">" . elgg_view_icon($icon) . "</li>";
}
?>
</ul>
|