Netsutie PHP Toolkit
EntityCustomField.php
Go to the documentation of this file.
1 <?php
9 
18  public $label;
19 
28  public $owner;
29 
38  public $description;
39 
49 
58  public $storeValue;
59 
68  public $showInList;
69 
78  public $globalSearch;
79 
88  public $isParent;
89 
98  public $insertBefore;
99 
109 
118  public $subtab;
119 
128  public $displayType;
129 
139 
149 
158  public $help;
159 
169 
178  public $linkText;
179 
188  public $isMandatory;
189 
199 
208  public $maxLength;
209 
218  public $minValue;
219 
228  public $maxValue;
229 
239 
249 
258  public $isFormula;
259 
269 
279 
289 
299 
308  public $sourceList;
309 
318  public $sourceFrom;
319 
329 
339 
349 
359 
369 
379 
389 
399 
409 
419 
429 
438  public $filterList;
439 
448  public $accessLevel;
449 
459 
468  public $searchLevel;
469 
479 
489 
499 
509 
519 
528  public $internalId;
529 
530 
531 
532  static $paramtypesmap = array(
533 
534  "label" => "string",
535 
536  "owner" => "RecordRef",
537 
538  "description" => "string",
539 
540  "selectRecordType" => "RecordRef",
541 
542  "storeValue" => "boolean",
543 
544  "showInList" => "boolean",
545 
546  "globalSearch" => "boolean",
547 
548  "isParent" => "boolean",
549 
550  "insertBefore" => "RecordRef",
551 
552  "availableToSso" => "boolean",
553 
554  "subtab" => "RecordRef",
555 
556  "displayType" => "CustomizationDisplayType",
557 
558  "displayWidth" => "integer",
559 
560  "displayHeight" => "integer",
561 
562  "help" => "string",
563 
564  "parentSubtab" => "RecordRef",
565 
566  "linkText" => "string",
567 
568  "isMandatory" => "boolean",
569 
570  "checkSpelling" => "boolean",
571 
572  "maxLength" => "integer",
573 
574  "minValue" => "float",
575 
576  "maxValue" => "float",
577 
578  "defaultChecked" => "boolean",
579 
580  "defaultValue" => "string",
581 
582  "isFormula" => "boolean",
583 
584  "defaultSelection" => "RecordRef",
585 
586  "dynamicDefault" => "CustomizationDynamicDefault",
587 
588  "searchDefault" => "RecordRef",
589 
590  "searchCompareField" => "RecordRef",
591 
592  "sourceList" => "RecordRef",
593 
594  "sourceFrom" => "RecordRef",
595 
596  "sourceFilterBy" => "RecordRef",
597 
598  "appliesToCustomer" => "boolean",
599 
600  "appliesToProject" => "boolean",
601 
602  "appliesToVendor" => "boolean",
603 
604  "appliesToEmployee" => "boolean",
605 
606  "appliesToOtherName" => "boolean",
607 
608  "appliesToContact" => "boolean",
609 
610  "appliesToPartner" => "boolean",
611 
612  "appliesToWebSite" => "boolean",
613 
614  "appliesToGroup" => "boolean",
615 
616  "availableExternally" => "boolean",
617 
618  "filterList" => "EntityCustomFieldFilterList",
619 
620  "accessLevel" => "CustomizationAccessLevel",
621 
622  "appliesToStatement" => "boolean",
623 
624  "searchLevel" => "CustomizationSearchLevel",
625 
626  "appliesToPriceList" => "boolean",
627 
628  "roleAccessList" => "CustomFieldRoleAccessList",
629 
630  "deptAccessList" => "CustomFieldDepartmentAccessList",
631 
632  "subAccessList" => "CustomFieldSubAccessList",
633 
634  "translationsList" => "CustomFieldTranslationsList",
635 
636  "internalId" => "string",
637 
638  );
639 
640 }