CurrentObject != null) { $this->Title = "Manage Tenant Object: " . $this->CurrentObject->Name . " on " . $this->CurrentTenant->URL; } else { $this->Title = "Manage Tenant Objects: " . $this->CurrentTenant->URL; } } protected function RenderContent() { if ($this->CurrentObject != null) { ?>

Object: CurrentObject->Name); ?> on CurrentTenant->URL); ?>

TabPages[] = new TabPage("tabStaticProperties", "Static Properties", null, null, null, function() { ?> CurrentObject->GetProperties(); foreach ($properties as $property) { ?>
[+] Property Data Type Default Value
[+] Name); ?> DataType == null ? "(undefined)" : "DataType->ID) . "\">" . $property->DataType->Name . ""); ?> DataType == null || $property->DataType->ColumnRendererCodeBlob == null) { ?> DataType->ColumnRendererCodeBlob, $property->Value); } ?>
TabPages[] = new TabPage("tabInstanceProperties", "Instance Properties", null, null, null, function() { ?> CurrentObject->GetInstanceProperties(); foreach ($properties as $property) { ?>
[+] Property Data Type Default Value
[+] Name); ?> DataType == null ? "(undefined)" : "DataType->ID) . "\">" . $property->DataType->Name . ""); ?> RenderColumn(); ?>
TabPages[] = new TabPage("tabStaticMethods", "Static Methods", null, null, null, function() { ?> CurrentObject->GetMethods(); foreach ($methods as $method) { ?>
[+] Method Description Return Data Type
[+] CurrentTenant->URL . "/objects/" . $this->CurrentObject->ID . "/methods/static/" . $method->ID)); ?>">Name); ?> Description); ?> DataType == null ? "(undefined)" : "" . $method->DataType->Name . ""); */ ?>
TabPages[] = new TabPage("tabInstances", "Instances", null, null, null, function() { ?> CurrentObject->GetInstanceProperties(); foreach ($properties as $property) { if ($property->ColumnVisible) { echo(""); } } ?> CurrentObject->GetInstances(); foreach ($instances as $instance) { ?> ColumnVisible) { echo(""); } } ?>
" . $property->Name . "
"); $value = $instance->GetPropertyValue($property); $property->RenderColumn($value); echo("
Render(); ?>
CurrentTenant->URL)); ?>">Cancel