Changeset 760 for trunk/Modules/IS/IS.php
- Timestamp:
- Oct 27, 2015, 12:06:52 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/IS.php
r755 r760 477 477 if($ExcludeColumn != $ItemIndex) 478 478 if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false)) 479 if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false)) 479 480 $TableColumns[] = array('Name' => $ItemIndex, 'Title' => $FormItem['Caption']); 480 481 $UseType = $UseType = $FormItem['Type']; … … 536 537 foreach($FormClass['Items'] as $ItemIndex => $FormItem) 537 538 if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false)) 539 if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false)) 538 540 if((!array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) or 539 541 (array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) and … … 558 560 foreach($FormClass['Items'] as $ItemIndex => $FormItem) 559 561 if(!array_key_exists('Hidden', $FormItem) or ($FormItem['Hidden'] == false)) 562 if(!array_key_exists('NotInList', $FormItem) or ($FormItem['NotInList'] == false)) 560 563 if((!array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) or 561 564 (array_key_exists($FormItem['Type'], $this->System->FormManager->FormTypes) and
Note:
See TracChangeset
for help on using the changeset viewer.