-
Notifications
You must be signed in to change notification settings - Fork 235
GetMetadataResources
Troy Davisson edited this page Mar 5, 2016
·
3 revisions
Note: This page documents capabilities available in the older 1.x version. Please see this repository's README file for the new 2.x version documentation.
GetMetadataResources ( )
Gets information about the available RETS Resources
None
Array
Each array item represents a single Resource. Returns FALSE
if request for information failed.
<?php
$resources = $rets->GetMetadataResources();
foreach ($resources as $resource) {
echo "+ Resource {$resource['ResourceID']} described as " . $resource['Description'] . "\n";
}
+ Resource Property described as "Property Database"
+ Resource Agent described as "Agent Database"