Please enable JavaScript to view this site.

Navigation: Advanced topics > Programming topics > Project Settings API > Methods

Project Settings API: getDetailsTables()

Scroll Prev Next More

 

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:

getDetailsKeys()

About Project Settings API

Created with Help+Manual 7 and styled with Premium Pack Version 3 © by EC Software