aboutsummaryrefslogtreecommitdiff
path: root/start.php
blob: dd58a6ac53a09e538ad418542779e95234e57fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

  /**
   * Simplepie Plugin
   * 
   * Loads the simplepie feed parser library 
   **/
  
  function simplepie_init() 
  {    
    add_widget_type('feed_reader', elgg_echo('simplepie:widget'), elgg_echo('simplepie:description'));
  }
  
  register_elgg_event_handler('plugins_boot', 'system', 'simplepie_init');
?>