# Howto create a bridge A bridge is an interface that allows rss-bridge to create a RSS feed from a website. The bridge is a PHP file, located in the `bridges/` folder. ##Specifications A rss bridge must extend the `BridgeAbstract` class, and implement the following functions : * The `loadMetadatas` function, described below, * The `getCacheDuration` function, describing the time during which rss-bridge will output cached values instead of re-generating a RSS feed. * The `collectData` function, also described below. ##The `collectData` function This function takes as a parameter an array called `$param`, that is automatically filled with values from the user, according to the values setted in `loadMetadatas`. This function is the place where all the website scrapping and the RSS feed generation process will go. The RSS elements are stored in the class variable `items[]`. Every RSS element is an instance of the `Item` class. ##The `loadMetadatas` function This function is the one used by rss-bridge core to determine the name, maintainer name, website, last updated date... of the bridge, and the user parameters. ### Basic metadatas. The basic metadatas are the following : ```PHP $this->maintainer $this->name $this->uri $this->description $this->update ``` The default values are the following : ```PHP $this->name = "Unnamed bridge"; $this->uri = ""; $this->description = 'No description provided'; $this->maintainer = 'No maintainer'; ``` ### Parameters Parameters use a JSON-like format, which is parsed and transformed to HTML `