webCOMAND

collection::get_common_display_fields()

Return an array of ContentTypeFields that are display fields shared by the content type of every Object in the collection.

Prototype

array get_common_display_fields()

Return

Array of ContentTypeFields that are display fields shared by the content type of every Object in the collection.

Example

$objects = $collection->get("WHERE Identifier LIKE '%System%'");
$feilds = $objects->get_common_display_fields();
foreach($feilds as $feild) {
    echo("Common Display Field " . $field->Title . "\n");
}

Related

collection::get_common_content_type()