CaRP: Caching RSS Parser - Documentation
CaRP Interactive FAQ
Getting Started: Free Download | Purchase | Install
Reference: Functions | Plugins | Themes | Full Index
Etc.: Display Formatting | Example Code | Affiliates
Getting Started: Free Download | Purchase | Install
Reference: Functions | Plugins | Themes | Full Index
Etc.: Display Formatting | Example Code | Affiliates
CarpLoadPlugin( plugin filename );
Load a CaRP Evolution plugin| Evolution | LE | Koi | SE |
| All | n/a | n/a | n/a |
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');
?>