getMap() public static method

Get a list of all web form names and IDs.
public static getMap ( Infusionsoft_App $app = null ) : array
$app Infusionsoft_App
return array List of web form names and IDs.
<form>
    <input type="submit">
<input type="hidden" name="go">
</form>
<?php 
include '../infusionsoft.php';
include 'testUtils.php';
if (isset($_REQUEST['go'])) {
    $out = Infusionsoft_WebFormService::getMap();
    var_dump($out);
}
<?php

include "../infusionsoft.php";
include 'testUtils.php';
$webforms = Infusionsoft_WebFormService::getMap(Infusionsoft_AppPool::getApp());
foreach ($webforms as $webformId => $webformName) {
    ?>
	<h1>Webform: <?php 
    echo $webformId . '-' . $webformName;
    ?>
</h1>	
	<?php 
    echo Infusionsoft_WebFormService::getHTML($webformId, Infusionsoft_AppPool::getApp());
    ?>
<hr><?php 
}