Netsutie PHP Toolkit
CustomRecordCustomField.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 
108  public $subtab;
109 
118  public $displayType;
119 
129 
139 
148  public $help;
149 
159 
168  public $linkText;
169 
178  public $isMandatory;
179 
189 
198  public $maxLength;
199 
208  public $minValue;
209 
218  public $maxValue;
219 
229 
239 
248  public $isFormula;
249 
259 
269 
279 
289 
298  public $sourceList;
299 
308  public $sourceFrom;
309 
319 
328  public $recType;
329 
339 
348  public $filterList;
349 
358  public $accessLevel;
359 
368  public $searchLevel;
369 
379 
389 
399 
409 
418  public $internalId;
419 
420 
421 
422  static $paramtypesmap = array(
423 
424  "label" => "string",
425 
426  "owner" => "RecordRef",
427 
428  "description" => "string",
429 
430  "selectRecordType" => "RecordRef",
431 
432  "storeValue" => "boolean",
433 
434  "showInList" => "boolean",
435 
436  "globalSearch" => "boolean",
437 
438  "isParent" => "boolean",
439 
440  "insertBefore" => "RecordRef",
441 
442  "subtab" => "RecordRef",
443 
444  "displayType" => "CustomizationDisplayType",
445 
446  "displayWidth" => "integer",
447 
448  "displayHeight" => "integer",
449 
450  "help" => "string",
451 
452  "parentSubtab" => "RecordRef",
453 
454  "linkText" => "string",
455 
456  "isMandatory" => "boolean",
457 
458  "checkSpelling" => "boolean",
459 
460  "maxLength" => "integer",
461 
462  "minValue" => "float",
463 
464  "maxValue" => "float",
465 
466  "defaultChecked" => "boolean",
467 
468  "defaultValue" => "string",
469 
470  "isFormula" => "boolean",
471 
472  "defaultSelection" => "RecordRef",
473 
474  "dynamicDefault" => "CustomizationDynamicDefault",
475 
476  "searchDefault" => "RecordRef",
477 
478  "searchCompareField" => "RecordRef",
479 
480  "sourceList" => "RecordRef",
481 
482  "sourceFrom" => "RecordRef",
483 
484  "sourcefilterby" => "RecordRef",
485 
486  "recType" => "string",
487 
488  "roleRestrict" => "boolean",
489 
490  "filterList" => "CustomRecordCustomFieldFilterList",
491 
492  "accessLevel" => "CustomizationAccessLevel",
493 
494  "searchLevel" => "CustomizationSearchLevel",
495 
496  "roleAccessList" => "CustomFieldRoleAccessList",
497 
498  "deptAccessList" => "CustomFieldDepartmentAccessList",
499 
500  "subAccessList" => "CustomFieldSubAccessList",
501 
502  "translationsList" => "CustomFieldTranslationsList",
503 
504  "internalId" => "string",
505 
506  );
507 
508 }