PHP SDK Samples - Layouts Operations
Get Layouts
<?php
namespace com\zoho\crm\sample\layouts;
use com\zoho\crm\api\layouts\APIException;
use com\zoho\crm\api\layouts\LayoutsOperations;
use com\zoho\crm\api\layouts\ResponseWrapper;
class Layout
{
/**
* Get Layouts
* This method is used to get metadata about all the layouts of a module and print the response.
* @param moduleAPIName The API Name of the module to get layouts.
* @throws Exception
*/
public static function getLayouts(string $moduleAPIName)
{
//example, moduleAPIName = "module_api_name";
//Get instance of LayoutsOperations Class that takes moduleAPIName as parameter
$layoutsOperations = new LayoutsOperations($moduleAPIName);
//Call getLayouts method
$response = $layoutsOperations->getLayouts();
if($response != null)
{
//Get the status code from response
echo("Status code " . $response->getStatusCode() . "\n");
if(in_array($response->getStatusCode(), array(204, 304)))
{
echo($response->getStatusCode() == 204? "No Content\n" : "Not Modified\n");
return;
}
//Get object from response
$responseHandler = $response->getObject();
if($responseHandler instanceof ResponseWrapper)
{
//Get the received ResponseWrapper instance
$responseWrapper = $responseHandler;
//Get the list of obtained Layout instances
$layouts = $responseWrapper->getLayouts();
foreach($layouts as $layout)
{
if($layout->getCreatedTime() != null)
{
//Get the CreatedTime of each Layout
echo("Layout CreatedTime: "); print_r($layout->getCreatedTime()); echo("\n");
}
//Check if ConvertMapping is not null
if($layout->getConvertMapping() != null)
{
//Get the MultiModuleLookup map
foreach($layout->getConvertMapping() as $key => $value)
{
//Get each value in the map
echo($key . " : "); print_r($value); echo("\n");
}
}
//Get the Visible of each Layout
echo("Layout Visible: "); print_r($layout->getVisible()); echo("\n");
//Get the createdFor User instance of each Layout
$createdFor = $layout->getCreatedFor();
//Check if createdFor is not null
if($createdFor != null)
{
//Get the Name of the createdFor User
echo("Layout CreatedFor User-Name: " . $createdFor->getName() . "\n");
//Get the ID of the createdFor User
echo("Layout CreatedFor User-ID: " . $createdFor->getId() . "\n");
//Get the Email of the createdFor User
echo("Layout CreatedFor User-Email: " . $createdFor->getEmail() . "\n");
}
//Get the profiles of each Layout
$profiles = $layout->getProfiles();
//Check if profiles is not null
if($profiles != null)
{
foreach($profiles as $profile)
{
//Get the Default of each Profile
echo("Layout Profile Default: " . $profile->getDefault() . "\n");
//Get the Name of each Profile
echo("Layout Profile Name: " . $profile->getName() . "\n");
//Get the ID of each Profile
echo("Layout Profile ID: " . $profile->getId() . "\n");
$defaultView = $profile->getDefaultview();
if($defaultView != null)
{
//Get the Name of each DefaultView Profile
echo("Layout Profile DefaultView Name: " . $defaultView->getName() . "\n");
//Get the ID of each DefaultView Profile
echo("Layout Profile DefaultView ID: " . $defaultView->getId() . "\n");
//Get the Type of each DefaultView Profile
echo("Layout Profile DefaultView Type: " . $defaultView->getType() . "\n");
}
}
}
//Get the createdBy User instance of each Layout
$createdBy = $layout->getCreatedBy();
//Check if createdBy is not null
if($createdBy != null)
{
//Get the Name of the createdBy User
echo("Layout CreatedBy User-Name: " . $createdBy->getName() . "\n");
//Get the ID of the createdBy User
echo("Layout CreatedBy User-ID: " . $createdBy->getId() . "\n");
//Get the Email of the createdBy User
echo("Layout CreatedBy User-Email: " . $createdBy->getEmail() . "\n");
}
//Get the sections of each Layout
$sections = $layout->getSections();
//Check if sections is not null
if($sections != null)
{
foreach($sections as $section)
{
//Get the DisplayLabel of each Section
echo("Layout Section DisplayLabel: " . $section->getDisplayLabel() . "\n");
//Get the SequenceNumber of each Section
echo("Layout Section SequenceNumber: " . $section->getSequenceNumber() . "\n");
//Get the Issubformsection of each Section
echo("Layout Section Issubformsection: " . $section->getIssubformsection() . "\n");
//Get the TabTraversal of each Section
echo("Layout Section TabTraversal: " . $section->getTabTraversal() . "\n");
//Get the APIName of each Section
echo("Layout Section APIName: " . $section->getAPIName() . "\n");
//Get the ColumnCount of each Section
echo("Layout Section ColumnCount: " . $section->getColumnCount() . "\n");
//Get the Name of each Section
echo("Layout Section Name: " . $section->getName() . "\n");
//Get the GeneratedType of each Section
echo("Layout Section GeneratedType: " . $section->getGeneratedType() . "\n");
//Get the Type of each Section
echo("Layout Section Type: " . $section->getType() . "\n");
//Get the fields of each Section
$fields = $section->getFields();
//Check if sections is not null
if($fields != null)
{
foreach($fields as $field)
{
self::printField($field);
}
}
//Get the properties User instance of each Section
$properties = $section->getProperties();
//Check if properties is not null
if($properties != null)
{
//Get the ReorderRows of each Properties
echo("Layout Section Properties ReorderRows: " . $properties->getReorderRows() . "\n");
//Get the tooltip User instance of the Properties
$tooltip = $properties->getTooltip();
//Check if tooltip is not null
if($tooltip != null)
{
//Get the Name of the ToolTip
echo("Layout Section Properties ToolTip Name: " . $tooltip->getName() . "\n");
//Get the Value of the ToolTip
echo("Layout Section Properties ToolTip Value: " . $tooltip->getValue() . "\n");
}
//Get the MaximumRows of each Properties
echo("Layout Section Properties MaximumRows: " . $properties->getMaximumRows() . "\n");
}
}
}
//Get the ShowBusinessCard of each Layout
echo("Layout ShowBusinessCard: "); print_r($layout->getShowBusinessCard()); echo("\n");
//Get the ModifiedTime of each Layout
echo("Layout ModifiedTime: "); print_r($layout->getModifiedTime()); echo("\n");
//Get the Name of each Layout
echo("Layout Name: " . $layout->getName() . "\n");
//Get the modifiedBy User instance of each Layout
$modifiedBy = $layout->getModifiedBy();
//Check if modifiedBy is not null
if($modifiedBy != null)
{
//Get the Name of the modifiedBy User
echo("Layout ModifiedBy User-Name: " . $modifiedBy->getName() . "\n");
//Get the ID of the modifiedBy User
echo("Layout ModifiedBy User-ID: " . $modifiedBy->getId() . "\n");
}
//Get the ID of each Layout
echo("Layout ID: " . $layout->getId() . "\n");
//Get the Status of each Layout
echo("Layout Status: " . $layout->getStatus() . "\n");
}
}
//Check if the request returned an exception
else if($responseHandler instanceof APIException)
{
//Get the received APIException instance
$exception = $responseHandler;
//Get the Status
echo("Status: " . $exception->getStatus()->getValue() . "\n");
//Get the Code
echo("Code: " . $exception->getCode()->getValue() . "\n");
echo("Details: " );
//Get the details map4
foreach($exception->getDetails() as $key => $value)
{
//Get each value in the map
echo($key . ": " .$value . "\n");
}
//Get the Message
echo("Message: " . $exception->getMessage()->getValue() . "\n");
}
}
}
private static function printField($field)
{
//Get the SystemMandatory of each Field
echo("Field SystemMandatory: " ); print_r($field->getSystemMandatory()); echo("\n");
//Get the private info of each field
$privateInfo = $field->getPrivate();
//Check if privateInfo is not null
if($privateInfo != null)
{
echo("Private Details\n");
//Get the type
echo("Field Private Type: " . $privateInfo->getType() . "\n");
//Get the Export
echo("Field Private Export: " . $privateInfo->getExport() . "\n");
//Get the Restricted
echo("Field Private Restricted: " . $privateInfo->getRestricted() . "\n");
}
//Get the Webhook of each Field
echo("Field Webhook: "); print_r($field->getWebhook()); print_r("\n");
//Get the JsonType of each Field
echo("Field JsonType: " . $field->getJsonType() . "\n");
//Get the obtained Crypt instance
$crypt = $field->getCrypt();
//Check if crypt is not null
if($crypt != null)
{
//Get the Mode of the Crypt
echo("Field Crypt Mode: " . $crypt->getMode() . "\n");
//Get the Column of the Crypt
echo("Field Crypt Column: " . $crypt->getColumn() . "\n");
$encFldIds = $crypt->getEncFldids();
if($encFldIds != null)
{
echo("EncFldIds : ");
foreach($encFldIds as $encFldId)
{
echo($encFldId . "\n");
}
}
//Get the Notify of the Crypt
echo("Field Crypt Notify: " . $crypt->getNotify() . "\n");
//Get the Table of the Crypt
echo("Field Crypt Table: " . $crypt->getTable() . "\n");
//Get the Status of the Crypt
echo("Field Crypt Status: " . $crypt->getStatus() . "\n");
}
//Get the FieldLabel of each Field
echo("Field FieldLabel: " . $field->getFieldLabel() . "\n");
//Get the Object obtained ToolTip instance
$tooltip = $field->getTooltip();
//Check if tooltip is not null
if($tooltip != null)
{
//Get the Name of the ToolTip
echo("Field ToolTip Name: " . $tooltip->getName() . "\n");
//Get the Value of the ToolTip
echo("Field ToolTip Value: " . $tooltip->getValue() . "\n");
}
//Get the CreatedSource of each Field
echo("Field CreatedSource: " . $field->getCreatedSource() . "\n");
//Get the Type of each Field
echo("Field Type: " . $field->getType() . "\n");
//Get the FieldReadOnly of each Field
echo("Field FieldReadOnly: "); print_r($field->getFieldReadOnly()); echo("\n");
//Get the DisplayLabel of each Field
echo("Field DisplayLabel: " . $field->getDisplayLabel() . "\n");
//Get the DisplayType of each Field
echo("Field DisplayType: " . $field->getDisplayType()->getValue() . "\n");
//Get the UIType of each Field
echo("Field UIType: " . $field->getUiType() . "\n");
//Get the ReadOnly of each Field
echo("Field ReadOnly: "); print_r($field->getReadOnly()); echo("\n");
//Get the Object obtained AssociationDetails instance
$associationDetails = $field->getAssociationDetails();
//Check if associationDetails is not null
if($associationDetails != null)
{
//Get the Object obtained LookupField instance
$lookupField = $associationDetails->getLookupField();
//Check if lookupField is not null
if($lookupField != null)
{
//Get the ID of the LookupField
echo("Field AssociationDetails LookupField ID: " . $lookupField->getId() . "\n");
//Get the Name of the LookupField
echo("Field AssociationDetails LookupField Name: " . $lookupField->getName() . "\n");
}
//Get the Object obtained LookupField instance
$relatedField = $associationDetails->getRelatedField();
//Check if relatedField is not null
if($relatedField != null)
{
//Get the ID of the LookupField
echo("Field AssociationDetails RelatedField ID: " . $relatedField->getId() . "\n");
//Get the Name of the LookupField
echo("Field AssociationDetails RelatedField Name: " . $relatedField->getName() . "\n");
}
}
//Get the BusinesscardSupported of each Field
echo("Field BusinesscardSupported: "); print_r($field->getBusinesscardSupported()); echo("\n");
//Check if MultiModuleLookup is not null
if($field->getMultiModuleLookup() != null)
{
//Get the MultiModuleLookup map
foreach($field->getMultiModuleLookup() as $key => $value)
{
//Get each value in the map
echo($key . ": " . $value . "\n");
}
}
//Get the Object obtained Currency instance
$currency = $field->getCurrency();
//Check if currency is not null
if($currency != null)
{
//Get the RoundingOption of the Currency
echo("Field Currency RoundingOption: " . $currency->getRoundingOption() . "\n");
if($currency->getPrecision() != null)
{
//Get the Precision of the Currency
echo("Field Currency Precision: " . $currency->getPrecision() . "\n");
}
}
//Get the ID of each Field
echo("Field ID: " . $field->getId() . "\n");
//Get the CustomField of each Field
echo("Field CustomField: "); print_r($field->getCustomField()); echo("\n");
//Get the Object obtained Module instance
$lookup = $field->getLookup();
//Check if lookup is not null
if($lookup != null)
{
//Get the Object obtained Layout instance
$layout = $lookup->getLayout();
//Check if layout is not null
if($layout != null)
{
//Get the ID of the Layout
echo("Field Lookup Layout ID: " . $layout->getId() . "\n");
//Get the Name of the Layout
echo("Field Lookup Layout Name: " . $layout->getName() . "\n");
}
//Get the DisplayLabel of the Module
echo("Field Lookup DisplayLabel: " . $lookup->getDisplayLabel() . "\n");
//Get the APIName of the Module
echo("Field Lookup APIName: " . $lookup->getAPIName() . "\n");
//Get the Module of the Module
echo("Field Lookup Module: " . $lookup->getModule() . "\n");
if($lookup->getId() != null)
{
//Get the ID of the Module
echo("Field Lookup ID: " . $lookup->getId() . "\n");
}
//Get the ModuleName of the Module
echo("Field Lookup ModuleName: " . $lookup->getModuleName() . "\n");
}
//Get the Filterable of each Field
echo("Field Filterable: " . $field->getFilterable() . "\n");
//Check if ConvertMapping is not null
if($field->getConvertMapping() != null)
{
echo("Field ConvertMapping: \n");
//Get the details map
foreach($field->getConvertMapping() as $key => $value)
{
//Get each value in the map
echo($key . " : " . $value . "\n");
}
}
//Get the Visible of each Field
echo("Field Visible: "); print_r($field->getVisible()); echo("\n");
$profiles = $field->getProfiles();
if($profiles != null)
{
foreach($profiles as $profile)
{
//Get the PermissionType of each Profile
echo("Field Profile PermissionType: " . $profile->getPermissionType() . "\n");
//Get the Name of each Profile
echo("Field Profile Name: " . $profile->getName() . "\n");
//Get the Id of each Profile
echo("Field Profile Id: " . $profile->getId() . "\n");
}
}
if($field->getLength() != null)
{
//Get the Length of each Field
echo("Field Length: " . $field->getLength() . "\n");
}
//Get the Object obtained ViewType instance
$viewType = $field->getViewType();
//Check if viewType is not null
if($viewType != null)
{
//Get the View of the ViewType
echo("Field ViewType View: " . $viewType->getView() . "\n");
//Get the Edit of the ViewType
echo("Field ViewType Edit: " . $viewType->getEdit() . "\n");
//Get the Create of the ViewType
echo("Field ViewType Create: " . $viewType->getCreate() . "\n");
//Get the View of the ViewType
echo("Field ViewType QuickCreate: " . $viewType->getQuickCreate() . "\n");
}
//Get the PickListValuesSortedLexically of each Field
echo("Field PickListValuesSortedLexically: " . $field->getPickListValuesSortedLexically() . "\n");
//Get the Sortable of each Field
echo("Field Sortable: "); print_r($field->getSortable()); echo("\n");
//Get the Object obtained Module instance
$subform = $field->getSubform();
//Check if subform is not null
if($subform != null)
{
//Get the Object obtained Layout instance
$layout = $subform->getLayout();
//Check if layout is not null
if($layout != null)
{
//Get the ID of the Layout
echo("Field Subform Layout ID: " . $layout->getId() . "\n");
//Get the Name of the Layout
echo("Field Subform Layout Name: " . $layout->getName() . "\n");
}
if($subform->getDisplayLabel() != null)
{
//Get the DisplayLabel of the Module
echo("Field Subform DisplayLabel: " . $subform->getDisplayLabel() . "\n");
}
//Get the APIName of the Module
echo("Field Subform APIName: " . $subform->getAPIName() . "\n");
//Get the Module of the Module
echo("Field Subform Module: " . $subform->getModule() . "\n");
if($subform->getId() != null)
{
//Get the ID of the Module
echo("Field Subform ID: " . $subform->getId() . "\n");
}
}
$external = $field->getExternal();
if($external != null)
{
//Get the Show of External
echo("Field External Show: " . $external->getShow() . "\n");
//Get the Type of External
echo("Field External Type: " . $external->getType() . "\n");
//Get the AllowMultipleConfig of External
echo("Field External AllowMultipleConfig: " . $external->getAllowMultipleConfig() . "\n");
}
//Get the APIName of each Field
echo("Field APIName: " . $field->getAPIName() . "\n");
//Get the Object obtained Unique instance
$unique = $field->getUnique();
//Check if unique is not null
if($unique != null)
{
//Get the Casesensitive of the Unique
echo("Field Unique Casesensitive : " . $unique->getCasesensitive() . "\n");
}
if($field->getHistoryTracking() != null)
{
//Get the HistoryTracking of each Field
echo("Field HistoryTracking: " . print_r($field->getHistoryTracking()) . "\n");
}
//Get the DataType of each Field
echo("Field DataType: " . $field->getDataType() . "\n");
//Get the Object obtained Formula instance
$formula = $field->getFormula();
//Check if formula is not null
if($formula != null)
{
//Get the ReturnType of the Formula
echo("Field Formula ReturnType : " . $formula->getReturnType() . "\n");
if($formula->getExpression() != null)
{
//Get the Expression of the Formula
echo("Field Formula Expression : " . $formula->getExpression() . "\n");
}
}
if($field->getDecimalPlace() != null)
{
//Get the DecimalPlace of each Field
echo("Field DecimalPlace: " . $field->getDecimalPlace() . "\n");
}
//Get the MassUpdate of each Field
echo("Field MassUpdate: " . $field->getMassUpdate() . "\n");
//Get all entries from the MultiSelectLookup instance
$multiSelectLookup = $field->getMultiselectlookup();
//Check if formula is not null
if($multiSelectLookup != null)
{
//Get the DisplayValue of the MultiSelectLookup
echo("Field MultiSelectLookup DisplayLabel: " . $multiSelectLookup->getDisplayLabel() . "\n");
//Get the LinkingModule of the MultiSelectLookup
echo("Field MultiSelectLookup LinkingModule: " . $multiSelectLookup->getLinkingModule() . "\n");
//Get the LookupApiname of the MultiSelectLookup
echo("Field MultiSelectLookup LookupApiname: " . $multiSelectLookup->getLookupApiname() . "\n");
//Get the APIName of the MultiSelectLookup
echo("Field MultiSelectLookup APIName: " . $multiSelectLookup->getAPIName() . "\n");
//Get the ConnectedModule of the MultiSelectLookup
echo("Field MultiSelectLookup ConnectedModule: " . $multiSelectLookup->getConnectedModule() . "\n");
//Get the ConnectedlookupApiname of the MultiSelectLookup
echo("Field MultiSelectLookup ConnectedlookupApiname: " . $multiSelectLookup->getConnectedlookupApiname() . "\n");
//Get the ID of the MultiSelectLookup
echo("Field MultiSelectLookup ID: " . $multiSelectLookup->getId() . "\n");
}
//Get the PickListValue of each Field
$pickListValues = $field->getPickListValues();
//Check if formula is not null
if($pickListValues != null)
{
foreach($pickListValues as $pickListValue)
{
self::printPickListValue($pickListValue);
}
}
//Get the AutoNumber of each Field
$autoNumber = $field->getAutoNumber();
//Check if formula is not null
if($autoNumber != null)
{
//Get the Prefix of the AutoNumber
echo("Field AutoNumber Prefix: " . $autoNumber->getPrefix() . "\n");
//Get the Suffix of the AutoNumber
echo("Field AutoNumber Suffix: " . $autoNumber->getSuffix() . "\n");
if($autoNumber->getStartNumber() != null)
{
//Get the StartNumber of the AutoNumber
echo("Field AutoNumber StartNumber: " . $autoNumber->getStartNumber() . "\n");
}
}
}
}
}
Get a Layout
<?php
namespace com\zoho\crm\sample\layouts;
use com\zoho\crm\api\layouts\APIException;
use com\zoho\crm\api\layouts\LayoutsOperations;
use com\zoho\crm\api\layouts\ResponseWrapper;
class Layout
{
/**
* Get Layout
* This method is used to get metadata about a single layout of a module with layoutID and print the response.
* @param moduleAPIName The API Name of the layout's module
* @param layoutId The ID of the field to be obtained
* @throws Exception
*/
public static function getLayout(string $moduleAPIName, string $layoutId)
{
//example, moduleAPIName = "module_api_name";
//layoutId = "34XXXX1055"
//Get instance of LayoutsOperations Class that takes moduleAPIName as parameter
$layoutsOperations = new LayoutsOperations($moduleAPIName);
//Call getLayouts method
$response = $layoutsOperations->getLayout($layoutId);
if($response != null)
{
//Get the status code from response
echo("Status code " . $response->getStatusCode() . "\n");
if(in_array($response->getStatusCode(), array(204, 304)))
{
echo($response->getStatusCode() == 204? "No Content\n" : "Not Modified\n");
return;
}
//Get object from response
$responseHandler = $response->getObject();
if($responseHandler instanceof ResponseWrapper)
{
//Get the received ResponseWrapper instance
$responseWrapper = $responseHandler;
//Get the list of obtained Layout instances
$layouts = $responseWrapper->getLayouts();
foreach($layouts as $layout)
{
if($layout->getCreatedTime() != null)
{
//Get the CreatedTime of each Layout
echo("Layout CreatedTime: "); print_r($layout->getCreatedTime()); echo("\n");
}
//Check if ConvertMapping is not null
if($layout->getConvertMapping() != null)
{
//Get the MultiModuleLookup map
foreach($layout->getConvertMapping() as $key => $value)
{
//Get each value in the map
echo($key . " : "); print_r($value); echo("\n");
}
}
//Get the Visible of each Layout
echo("Layout Visible: "); print_r($layout->getVisible()); echo("\n");
//Get the createdFor User instance of each Layout
$createdFor = $layout->getCreatedFor();
//Check if createdFor is not null
if($createdFor != null)
{
//Get the Name of the createdFor User
echo("Layout CreatedFor User-Name: " . $createdFor->getName() . "\n");
//Get the ID of the createdFor User
echo("Layout CreatedFor User-ID: " . $createdFor->getId() . "\n");
//Get the Email of the createdFor User
echo("Layout CreatedFor User-Email: " . $createdFor->getEmail() . "\n");
}
//Get the profiles of each Layout
$profiles = $layout->getProfiles();
//Check if profiles is not null
if($profiles != null)
{
foreach($profiles as $profile)
{
//Get the Default of each Profile
echo("Layout Profile Default: " . $profile->getDefault() . "\n");
//Get the Name of each Profile
echo("Layout Profile Name: " . $profile->getName() . "\n");
//Get the ID of each Profile
echo("Layout Profile ID: " . $profile->getId() . "\n");
$defaultView = $profile->getDefaultview();
if($defaultView != null)
{
//Get the Name of each DefaultView Profile
echo("Layout Profile DefaultView Name: " . $defaultView->getName() . "\n");
//Get the ID of each DefaultView Profile
echo("Layout Profile DefaultView ID: " . $defaultView->getId() . "\n");
//Get the Type of each DefaultView Profile
echo("Layout Profile DefaultView Type: " . $defaultView->getType() . "\n");
}
}
}
//Get the createdBy User instance of each Layout
$createdBy = $layout->getCreatedBy();
//Check if createdBy is not null
if($createdBy != null)
{
//Get the Name of the createdBy User
echo("Layout CreatedBy User-Name: " . $createdBy->getName() . "\n");
//Get the ID of the createdBy User
echo("Layout CreatedBy User-ID: " . $createdBy->getId() . "\n");
//Get the Email of the createdBy User
echo("Layout CreatedBy User-Email: " . $createdBy->getEmail() . "\n");
}
//Get the sections of each Layout
$sections = $layout->getSections();
//Check if sections is not null
if($sections != null)
{
foreach($sections as $section)
{
//Get the DisplayLabel of each Section
echo("Layout Section DisplayLabel: " . $section->getDisplayLabel() . "\n");
//Get the SequenceNumber of each Section
echo("Layout Section SequenceNumber: " . $section->getSequenceNumber() . "\n");
//Get the Issubformsection of each Section
echo("Layout Section Issubformsection: " . $section->getIssubformsection() . "\n");
//Get the TabTraversal of each Section
echo("Layout Section TabTraversal: " . $section->getTabTraversal() . "\n");
//Get the APIName of each Section
echo("Layout Section APIName: " . $section->getAPIName() . "\n");
//Get the ColumnCount of each Section
echo("Layout Section ColumnCount: " . $section->getColumnCount() . "\n");
//Get the Name of each Section
echo("Layout Section Name: " . $section->getName() . "\n");
//Get the GeneratedType of each Section
echo("Layout Section GeneratedType: " . $section->getGeneratedType() . "\n");
//Get the Type of each Section
echo("Layout Section Type: " . $section->getType() . "\n");
//Get the fields of each Section
$fields = $section->getFields();
//Check if sections is not null
if($fields != null)
{
foreach($fields as $field)
{
self::printField($field);
}
}
//Get the properties User instance of each Section
$properties = $section->getProperties();
//Check if properties is not null
if($properties != null)
{
//Get the ReorderRows of each Properties
echo("Layout Section Properties ReorderRows: " . $properties->getReorderRows() . "\n");
//Get the tooltip User instance of the Properties
$tooltip = $properties->getTooltip();
//Check if tooltip is not null
if($tooltip != null)
{
//Get the Name of the ToolTip
echo("Layout Section Properties ToolTip Name: " . $tooltip->getName() . "\n");
//Get the Value of the ToolTip
echo("Layout Section Properties ToolTip Value: " . $tooltip->getValue() . "\n");
}
//Get the MaximumRows of each Properties
echo("Layout Section Properties MaximumRows: " . $properties->getMaximumRows() . "\n");
}
}
}
//Get the ShowBusinessCard of each Layout
echo("Layout ShowBusinessCard: "); print_r($layout->getShowBusinessCard()); echo("\n");
//Get the ModifiedTime of each Layout
echo("Layout ModifiedTime: "); print_r($layout->getModifiedTime()); echo("\n");
//Get the Name of each Layout
echo("Layout Name: " . $layout->getName() . "\n");
//Get the modifiedBy User instance of each Layout
$modifiedBy = $layout->getModifiedBy();
//Check if modifiedBy is not null
if($modifiedBy != null)
{
//Get the Name of the modifiedBy User
echo("Layout ModifiedBy User-Name: " . $modifiedBy->getName() . "\n");
//Get the ID of the modifiedBy User
echo("Layout ModifiedBy User-ID: " . $modifiedBy->getId() . "\n");
}
//Get the ID of each Layout
echo("Layout ID: " . $layout->getId() . "\n");
//Get the Status of each Layout
echo("Layout Status: " . $layout->getStatus() . "\n");
}
}
//Check if the request returned an exception
else if($responseHandler instanceof APIException)
{
//Get the received APIException instance
$exception = $responseHandler;
//Get the Status
echo("Status: " . $exception->getStatus()->getValue() . "\n");
//Get the Code
echo("Code: " . $exception->getCode()->getValue() . "\n");
echo("Details: " );
//Get the details map4
foreach($exception->getDetails() as $key => $value)
{
//Get each value in the map
echo($key . ": " .$value . "\n");
}
//Get the Message
echo("Message: " . $exception->getMessage()->getValue() . "\n");
}
}
}
private static function printField($field)
{
//Get the SystemMandatory of each Field
echo("Field SystemMandatory: " ); print_r($field->getSystemMandatory()); echo("\n");
//Get the private info of each field
$privateInfo = $field->getPrivate();
//Check if privateInfo is not null
if($privateInfo != null)
{
echo("Private Details\n");
//Get the type
echo("Field Private Type: " . $privateInfo->getType() . "\n");
//Get the Export
echo("Field Private Export: " . $privateInfo->getExport() . "\n");
//Get the Restricted
echo("Field Private Restricted: " . $privateInfo->getRestricted() . "\n");
}
//Get the Webhook of each Field
echo("Field Webhook: "); print_r($field->getWebhook()); print_r("\n");
//Get the JsonType of each Field
echo("Field JsonType: " . $field->getJsonType() . "\n");
//Get the obtained Crypt instance
$crypt = $field->getCrypt();
//Check if crypt is not null
if($crypt != null)
{
//Get the Mode of the Crypt
echo("Field Crypt Mode: " . $crypt->getMode() . "\n");
//Get the Column of the Crypt
echo("Field Crypt Column: " . $crypt->getColumn() . "\n");
$encFldIds = $crypt->getEncFldids();
if($encFldIds != null)
{
echo("EncFldIds : ");
foreach($encFldIds as $encFldId)
{
echo($encFldId . "\n");
}
}
//Get the Notify of the Crypt
echo("Field Crypt Notify: " . $crypt->getNotify() . "\n");
//Get the Table of the Crypt
echo("Field Crypt Table: " . $crypt->getTable() . "\n");
//Get the Status of the Crypt
echo("Field Crypt Status: " . $crypt->getStatus() . "\n");
}
//Get the FieldLabel of each Field
echo("Field FieldLabel: " . $field->getFieldLabel() . "\n");
//Get the Object obtained ToolTip instance
$tooltip = $field->getTooltip();
//Check if tooltip is not null
if($tooltip != null)
{
//Get the Name of the ToolTip
echo("Field ToolTip Name: " . $tooltip->getName() . "\n");
//Get the Value of the ToolTip
echo("Field ToolTip Value: " . $tooltip->getValue() . "\n");
}
//Get the CreatedSource of each Field
echo("Field CreatedSource: " . $field->getCreatedSource() . "\n");
//Get the Type of each Field
echo("Field Type: " . $field->getType() . "\n");
//Get the FieldReadOnly of each Field
echo("Field FieldReadOnly: "); print_r($field->getFieldReadOnly()); echo("\n");
//Get the DisplayLabel of each Field
echo("Field DisplayLabel: " . $field->getDisplayLabel() . "\n");
//Get the DisplayType of each Field
echo("Field DisplayType: " . $field->getDisplayType()->getValue() . "\n");
//Get the UIType of each Field
echo("Field UIType: " . $field->getUiType() . "\n");
//Get the ReadOnly of each Field
echo("Field ReadOnly: "); print_r($field->getReadOnly()); echo("\n");
//Get the Object obtained AssociationDetails instance
$associationDetails = $field->getAssociationDetails();
//Check if associationDetails is not null
if($associationDetails != null)
{
//Get the Object obtained LookupField instance
$lookupField = $associationDetails->getLookupField();
//Check if lookupField is not null
if($lookupField != null)
{
//Get the ID of the LookupField
echo("Field AssociationDetails LookupField ID: " . $lookupField->getId() . "\n");
//Get the Name of the LookupField
echo("Field AssociationDetails LookupField Name: " . $lookupField->getName() . "\n");
}
//Get the Object obtained LookupField instance
$relatedField = $associationDetails->getRelatedField();
//Check if relatedField is not null
if($relatedField != null)
{
//Get the ID of the LookupField
echo("Field AssociationDetails RelatedField ID: " . $relatedField->getId() . "\n");
//Get the Name of the LookupField
echo("Field AssociationDetails RelatedField Name: " . $relatedField->getName() . "\n");
}
}
//Get the BusinesscardSupported of each Field
echo("Field BusinesscardSupported: "); print_r($field->getBusinesscardSupported()); echo("\n");
//Check if MultiModuleLookup is not null
if($field->getMultiModuleLookup() != null)
{
//Get the MultiModuleLookup map
foreach($field->getMultiModuleLookup() as $key => $value)
{
//Get each value in the map
echo($key . ": " . $value . "\n");
}
}
//Get the Object obtained Currency instance
$currency = $field->getCurrency();
//Check if currency is not null
if($currency != null)
{
//Get the RoundingOption of the Currency
echo("Field Currency RoundingOption: " . $currency->getRoundingOption() . "\n");
if($currency->getPrecision() != null)
{
//Get the Precision of the Currency
echo("Field Currency Precision: " . $currency->getPrecision() . "\n");
}
}
//Get the ID of each Field
echo("Field ID: " . $field->getId() . "\n");
//Get the CustomField of each Field
echo("Field CustomField: "); print_r($field->getCustomField()); echo("\n");
//Get the Object obtained Module instance
$lookup = $field->getLookup();
//Check if lookup is not null
if($lookup != null)
{
//Get the Object obtained Layout instance
$layout = $lookup->getLayout();
//Check if layout is not null
if($layout != null)
{
//Get the ID of the Layout
echo("Field Lookup Layout ID: " . $layout->getId() . "\n");
//Get the Name of the Layout
echo("Field Lookup Layout Name: " . $layout->getName() . "\n");
}
//Get the DisplayLabel of the Module
echo("Field Lookup DisplayLabel: " . $lookup->getDisplayLabel() . "\n");
//Get the APIName of the Module
echo("Field Lookup APIName: " . $lookup->getAPIName() . "\n");
//Get the Module of the Module
echo("Field Lookup Module: " . $lookup->getModule() . "\n");
if($lookup->getId() != null)
{
//Get the ID of the Module
echo("Field Lookup ID: " . $lookup->getId() . "\n");
}
//Get the ModuleName of the Module
echo("Field Lookup ModuleName: " . $lookup->getModuleName() . "\n");
}
//Get the Filterable of each Field
echo("Field Filterable: " . $field->getFilterable() . "\n");
//Check if ConvertMapping is not null
if($field->getConvertMapping() != null)
{
echo("Field ConvertMapping: \n");
//Get the details map
foreach($field->getConvertMapping() as $key => $value)
{
//Get each value in the map
echo($key . " : " . $value . "\n");
}
}
//Get the Visible of each Field
echo("Field Visible: "); print_r($field->getVisible()); echo("\n");
$profiles = $field->getProfiles();
if($profiles != null)
{
foreach($profiles as $profile)
{
//Get the PermissionType of each Profile
echo("Field Profile PermissionType: " . $profile->getPermissionType() . "\n");
//Get the Name of each Profile
echo("Field Profile Name: " . $profile->getName() . "\n");
//Get the Id of each Profile
echo("Field Profile Id: " . $profile->getId() . "\n");
}
}
if($field->getLength() != null)
{
//Get the Length of each Field
echo("Field Length: " . $field->getLength() . "\n");
}
//Get the Object obtained ViewType instance
$viewType = $field->getViewType();
//Check if viewType is not null
if($viewType != null)
{
//Get the View of the ViewType
echo("Field ViewType View: " . $viewType->getView() . "\n");
//Get the Edit of the ViewType
echo("Field ViewType Edit: " . $viewType->getEdit() . "\n");
//Get the Create of the ViewType
echo("Field ViewType Create: " . $viewType->getCreate() . "\n");
//Get the View of the ViewType
echo("Field ViewType QuickCreate: " . $viewType->getQuickCreate() . "\n");
}
//Get the PickListValuesSortedLexically of each Field
echo("Field PickListValuesSortedLexically: " . $field->getPickListValuesSortedLexically() . "\n");
//Get the Sortable of each Field
echo("Field Sortable: "); print_r($field->getSortable()); echo("\n");
//Get the Object obtained Module instance
$subform = $field->getSubform();
//Check if subform is not null
if($subform != null)
{
//Get the Object obtained Layout instance
$layout = $subform->getLayout();
//Check if layout is not null
if($layout != null)
{
//Get the ID of the Layout
echo("Field Subform Layout ID: " . $layout->getId() . "\n");
//Get the Name of the Layout
echo("Field Subform Layout Name: " . $layout->getName() . "\n");
}
if($subform->getDisplayLabel() != null)
{
//Get the DisplayLabel of the Module
echo("Field Subform DisplayLabel: " . $subform->getDisplayLabel() . "\n");
}
//Get the APIName of the Module
echo("Field Subform APIName: " . $subform->getAPIName() . "\n");
//Get the Module of the Module
echo("Field Subform Module: " . $subform->getModule() . "\n");
if($subform->getId() != null)
{
//Get the ID of the Module
echo("Field Subform ID: " . $subform->getId() . "\n");
}
}
$external = $field->getExternal();
if($external != null)
{
//Get the Show of External
echo("Field External Show: " . $external->getShow() . "\n");
//Get the Type of External
echo("Field External Type: " . $external->getType() . "\n");
//Get the AllowMultipleConfig of External
echo("Field External AllowMultipleConfig: " . $external->getAllowMultipleConfig() . "\n");
}
//Get the APIName of each Field
echo("Field APIName: " . $field->getAPIName() . "\n");
//Get the Object obtained Unique instance
$unique = $field->getUnique();
//Check if unique is not null
if($unique != null)
{
//Get the Casesensitive of the Unique
echo("Field Unique Casesensitive : " . $unique->getCasesensitive() . "\n");
}
if($field->getHistoryTracking() != null)
{
//Get the HistoryTracking of each Field
echo("Field HistoryTracking: " . print_r($field->getHistoryTracking()) . "\n");
}
//Get the DataType of each Field
echo("Field DataType: " . $field->getDataType() . "\n");
//Get the Object obtained Formula instance
$formula = $field->getFormula();
//Check if formula is not null
if($formula != null)
{
//Get the ReturnType of the Formula
echo("Field Formula ReturnType : " . $formula->getReturnType() . "\n");
if($formula->getExpression() != null)
{
//Get the Expression of the Formula
echo("Field Formula Expression : " . $formula->getExpression() . "\n");
}
}
if($field->getDecimalPlace() != null)
{
//Get the DecimalPlace of each Field
echo("Field DecimalPlace: " . $field->getDecimalPlace() . "\n");
}
//Get the MassUpdate of each Field
echo("Field MassUpdate: " . $field->getMassUpdate() . "\n");
//Get all entries from the MultiSelectLookup instance
$multiSelectLookup = $field->getMultiselectlookup();
//Check if formula is not null
if($multiSelectLookup != null)
{
//Get the DisplayValue of the MultiSelectLookup
echo("Field MultiSelectLookup DisplayLabel: " . $multiSelectLookup->getDisplayLabel() . "\n");
//Get the LinkingModule of the MultiSelectLookup
echo("Field MultiSelectLookup LinkingModule: " . $multiSelectLookup->getLinkingModule() . "\n");
//Get the LookupApiname of the MultiSelectLookup
echo("Field MultiSelectLookup LookupApiname: " . $multiSelectLookup->getLookupApiname() . "\n");
//Get the APIName of the MultiSelectLookup
echo("Field MultiSelectLookup APIName: " . $multiSelectLookup->getAPIName() . "\n");
//Get the ConnectedModule of the MultiSelectLookup
echo("Field MultiSelectLookup ConnectedModule: " . $multiSelectLookup->getConnectedModule() . "\n");
//Get the ConnectedlookupApiname of the MultiSelectLookup
echo("Field MultiSelectLookup ConnectedlookupApiname: " . $multiSelectLookup->getConnectedlookupApiname() . "\n");
//Get the ID of the MultiSelectLookup
echo("Field MultiSelectLookup ID: " . $multiSelectLookup->getId() . "\n");
}
//Get the PickListValue of each Field
$pickListValues = $field->getPickListValues();
//Check if formula is not null
if($pickListValues != null)
{
foreach($pickListValues as $pickListValue)
{
self::printPickListValue($pickListValue);
}
}
//Get the AutoNumber of each Field
$autoNumber = $field->getAutoNumber();
//Check if formula is not null
if($autoNumber != null)
{
//Get the Prefix of the AutoNumber
echo("Field AutoNumber Prefix: " . $autoNumber->getPrefix() . "\n");
//Get the Suffix of the AutoNumber
echo("Field AutoNumber Suffix: " . $autoNumber->getSuffix() . "\n");
if($autoNumber->getStartNumber() != null)
{
//Get the StartNumber of the AutoNumber
echo("Field AutoNumber StartNumber: " . $autoNumber->getStartNumber() . "\n");
}
}
}
}