aboutsummaryrefslogtreecommitdiff
path: root/start.php
blob: 44f259ace104668897da263d128b3cc4cd97c4a9 (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', 'Feed Reader Widget', 'single feed');
  }
  
  register_elgg_event_handler('plugins_boot', 'system', 'simplepie_init');
?>