Netsutie PHP Toolkit
OtherCustomField.php
Go to the documentation of this file.
1 <?php
9 
18  public $recType;
19 
28  public $label;
29 
38  public $owner;
39 
48  public $description;
49 
59 
68  public $storeValue;
69 
78  public $showInList;
79 
88  public $insertBefore;
89 
98  public $displayType;
99 
109 
119 
128  public $help;
129 
138  public $linkText;
139 
148  public $isMandatory;
149 
159 
168  public $maxLength;
169 
178  public $minValue;
179 
188  public $maxValue;
189 
199 
209 
218  public $isFormula;
219 
229 
239 
249 
259 
268  public $sourceList;
269 
278  public $sourceFrom;
279 
289 
298  public $filterList;
299 
308  public $accessLevel;
309 
318  public $searchLevel;
319 
329 
339 
349 
359 
368  public $internalId;
369 
370 
371 
372  static $paramtypesmap = array(
373 
374  "recType" => "RecordRef",
375 
376  "label" => "string",
377 
378  "owner" => "RecordRef",
379 
380  "description" => "string",
381 
382  "selectRecordType" => "RecordRef",
383 
384  "storeValue" => "boolean",
385 
386  "showInList" => "boolean",
387 
388  "insertBefore" => "RecordRef",
389 
390  "displayType" => "CustomizationDisplayType",
391 
392  "displayWidth" => "integer",
393 
394  "displayHeight" => "integer",
395 
396  "help" => "string",
397 
398  "linkText" => "string",
399 
400  "isMandatory" => "boolean",
401 
402  "checkSpelling" => "boolean",
403 
404  "maxLength" => "integer",
405 
406  "minValue" => "float",
407 
408  "maxValue" => "float",
409 
410  "defaultChecked" => "boolean",
411 
412  "defaultValue" => "string",
413 
414  "isFormula" => "boolean",
415 
416  "defaultSelection" => "RecordRef",
417 
418  "dynamicDefault" => "CustomizationDynamicDefault",
419 
420  "searchDefault" => "RecordRef",
421 
422  "searchCompareField" => "RecordRef",
423 
424  "sourceList" => "RecordRef",
425 
426  "sourceFrom" => "RecordRef",
427 
428  "sourceFilterBy" => "RecordRef",
429 
430  "filterList" => "OtherCustomFieldFilterList",
431 
432  "accessLevel" => "CustomizationAccessLevel",
433 
434  "searchLevel" => "CustomizationSearchLevel",
435 
436  "roleAccessList" => "CustomFieldRoleAccessList",
437 
438  "deptAccessList" => "CustomFieldDepartmentAccessList",
439 
440  "subAccessList" => "CustomFieldSubAccessList",
441 
442  "translationsList" => "CustomFieldTranslationsList",
443 
444  "internalId" => "string",
445 
446  );
447 
448 }