PHP Driver Files: friendlyname.php

This file is used by the ARDI user interface to convert the saved data source address (generated in saveconfig-source.php) to something that can be read by human-beings.

Below is an example from the text driver.

<?php
	$bits = explode('^',$address);
 
        $friendlyname = "Text File: ".$bits[0];
?>

This results in a string saying “Text File: ” followed by the name of the file being loaded.