CaRP Evolution Documentation
CaRP Evolution Documentation
twitter youtube linkedin google-plus
CaRP Evolution Box
Web This Site

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

CarpLoadPlugin( plugin filename );

Load a CaRP Evolution plugin
EvolutionLEKoiSE
Alln/an/an/a
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:
  1. 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','&bull; ');
CarpCacheShow('http://www.geckotribe.com/press/rss/pr.rss');
?>