Grouper - Documentation
Getting Started: Free Download |
Purchase |
Install
Reference: Functions | Plugins | Themes
Etc.: Configure | Affiliates
Reference: Functions | Plugins | Themes
Etc.: Configure | Affiliates
Function Reference
GrouperLoadPlugin(plugin name);
Loads the specified file from Grouper's plugins directory and selects it as the current data source.
plugin name: The name of the file to load. Be sure to include '.php'.
Example: (use the XML plugin and Atom 1.0 helper plugin to convert an Atom feed to RSS)
<?php
require_once '/YOUR/PATH/TO/grouper/grouper.php';
GrouperLoadPlugin('xml.php');
GrouperLoadPlugin('xml-atom-1.0.php');
GrouperSourceURL('http://example.com/feed.atom');
GrouperShow('','example-atom.rss');
?>