start.php 297 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Start file for the Rounded Avatars plugin
  4. */
  5. /**
  6. * Initializes the Rounded Avatars plugin
  7. *
  8. * @return void
  9. */
  10. function rounded_avatars_init() {
  11. elgg_extend_view("css/elgg", "css/rounded_avatars.css");
  12. }
  13. elgg_register_event_handler('init', 'system', 'rounded_avatars_init');