123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- $icons = array(
- 'arrow-left',
- 'arrow-right',
- 'arrow-two-head',
- 'attention',
- 'attention-hover',
- 'calendar',
- 'cell-phone',
- 'checkmark',
- 'checkmark-hover',
- 'clip',
- 'clip-hover',
- 'cursor-drag-arrow',
- 'delete',
- 'delete-alt',
- 'delete-alt-hover',
- 'delete-hover',
- 'download',
- 'download-hover',
- 'eye',
- 'facebook',
- 'grid',
- 'grid-hover',
- 'home',
- 'home-hover',
- 'hover-menu',
- 'hover-menu-hover',
- 'info',
- 'info-hover',
- 'link',
- 'link-hover',
- 'list',
- 'lock-closed',
- 'lock-open',
- 'mail',
- 'mail-alt',
- 'mail-alt-hover',
- 'mail-hover',
- 'photo',
- 'print',
- 'print-alt',
- 'push-pin',
- 'push-pin-alt',
- 'redo',
- 'refresh',
- 'refresh-hover',
- 'round-arrow-left',
- 'round-arrow-right',
- 'round-checkmark',
- 'round-minus',
- 'round-plus',
- 'rss',
- 'search',
- 'search-focus',
- 'settings',
- 'settings-alt',
- 'settings-alt-hover',
- 'share',
- 'share-hover',
- 'shop-cart',
- 'shop-cart-hover',
- 'speech-bubble',
- 'speech-bubble-alt',
- 'speech-bubble-alt-hover',
- 'speech-bubble-hover',
- 'star',
- 'star-alt',
- 'star-empty',
- 'star-empty-hover',
- 'star-hover',
- 'tag',
- 'tag-hover',
- 'thumbs-down',
- 'thumbs-down-alt',
- 'thumbs-down-alt-hover',
- 'thumbs-down-hover',
- 'thumbs-up',
- 'thumbs-up-alt',
- 'thumbs-up-alt-hover',
- 'thumbs-up-hover',
- 'trash',
- 'twitter',
- 'undo',
- 'user',
- 'user-hover',
- 'users',
- 'users-hover',
- 'video',
- );
- ?>
- <p>
- <?php echo elgg_echo('theme_sandbox:icons:blurb'); ?>
- </p>
- <ul class="elgg-gallery">
- <?php
- foreach ($icons as $icon) {
- echo "<li title=\"elgg-icon-$icon\" style=\"margin:10px\">" . elgg_view_icon($icon) . "</li>";
- }
- ?>
- </ul>
|