sprites.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. $icons = array(
  3. 'arrow-left',
  4. 'arrow-right',
  5. 'arrow-two-head',
  6. 'attention',
  7. 'attention-hover',
  8. 'calendar',
  9. 'cell-phone',
  10. 'checkmark',
  11. 'checkmark-hover',
  12. 'clip',
  13. 'clip-hover',
  14. 'cursor-drag-arrow',
  15. 'delete',
  16. 'delete-alt',
  17. 'delete-alt-hover',
  18. 'delete-hover',
  19. 'download',
  20. 'download-hover',
  21. 'eye',
  22. 'facebook',
  23. 'grid',
  24. 'grid-hover',
  25. 'home',
  26. 'home-hover',
  27. 'hover-menu',
  28. 'hover-menu-hover',
  29. 'info',
  30. 'info-hover',
  31. 'link',
  32. 'link-hover',
  33. 'list',
  34. 'lock-closed',
  35. 'lock-open',
  36. 'mail',
  37. 'mail-alt',
  38. 'mail-alt-hover',
  39. 'mail-hover',
  40. 'photo',
  41. 'print',
  42. 'print-alt',
  43. 'push-pin',
  44. 'push-pin-alt',
  45. 'redo',
  46. 'refresh',
  47. 'refresh-hover',
  48. 'round-arrow-left',
  49. 'round-arrow-right',
  50. 'round-checkmark',
  51. 'round-minus',
  52. 'round-plus',
  53. 'rss',
  54. 'search',
  55. 'search-focus',
  56. 'settings',
  57. 'settings-alt',
  58. 'settings-alt-hover',
  59. 'share',
  60. 'share-hover',
  61. 'shop-cart',
  62. 'shop-cart-hover',
  63. 'speech-bubble',
  64. 'speech-bubble-alt',
  65. 'speech-bubble-alt-hover',
  66. 'speech-bubble-hover',
  67. 'star',
  68. 'star-alt',
  69. 'star-empty',
  70. 'star-empty-hover',
  71. 'star-hover',
  72. 'tag',
  73. 'tag-hover',
  74. 'thumbs-down',
  75. 'thumbs-down-alt',
  76. 'thumbs-down-alt-hover',
  77. 'thumbs-down-hover',
  78. 'thumbs-up',
  79. 'thumbs-up-alt',
  80. 'thumbs-up-alt-hover',
  81. 'thumbs-up-hover',
  82. 'trash',
  83. 'twitter',
  84. 'undo',
  85. 'user',
  86. 'user-hover',
  87. 'users',
  88. 'users-hover',
  89. 'video',
  90. );
  91. ?>
  92. <p>
  93. <?php echo elgg_echo('theme_sandbox:icons:blurb'); ?>
  94. </p>
  95. <ul class="elgg-gallery">
  96. <?php
  97. foreach ($icons as $icon) {
  98. echo "<li title=\"elgg-icon-$icon\" style=\"margin:10px\">" . elgg_view_icon($icon) . "</li>";
  99. }
  100. ?>
  101. </ul>