CaRP: Caching RSS Parser - Documentation
CarpLoadPlugin( plugin filename );
Load a CaRP Evolution plugin
Description:
Loads the plugin file named.
The plugin file must be located in a directory named "plugins", which must be a subdirectory of the directory containing carp.php.
If the plugin is located somewhere else, it cannot be loaded using this function.
Arguments:
- plugin filename: The name of the plugin file.
Return value: none
Usage Example:
<?php
require_once '/home/geckotribe/carp/carp.php';
CarpLoadPlugin('flexformat.php');
CarpConf('iorder','link,desc');
CarpConf('maxidesc',0);
FlexFormatConf(2,'maxidesc',200);
FlexFormatConf(4,'iorder','link');
FlexFormatConf(4,'bilink','• ');
CarpCacheShow('http://www.geckotribe.com/press/rss/pr.rss');
?>