Returns the names of tables configured as details of the current table.
Syntax
$settings->getDetailsTables();
Arguments
No arguments.
Return value
An array containing detail table names. Returns an empty array if the table has no details.
Example
Display the detail tables linked to the Orders table.
$settings = new ProjectSettings("Orders");
$tables = $settings->getDetailsTables();
foreach ($tables as $table)
{
echo $table . "<br>";
}
See also: