ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.arEditField.php
Go to the documentation of this file.
1 <?php
2 require_once('./Customizing/global/plugins/Libraries/ActiveRecord/Views/class.arViewField.php');
3 
11 class arEditField extends arViewField {
12 
16  protected $form_element = NULL;
20  protected $subelement_of = NULL;
21 
22 
26  public function setSubelementOf($is_subelement_of) {
27  $this->subelement_of = $is_subelement_of;
28  }
29 
30 
34  public function getSubelementOf() {
35  return $this->subelement_of;
36  }
37 
38 
42  public function setFormElement($form_element) {
43  $this->form_element = $form_element;
44  }
45 
46 
50  public function getFormElement() {
51  return $this->form_element;
52  }
53 
54 
60  $this->setVisible(false);
61  }
62  $this->is_created_by_field = $is_created_by_field;
63  }
64 
65 
71  $this->setVisible(false);
72  }
73  $this->is_modified_by_field = $is_modified_by_field;
74  }
75 
76 
82  $this->setVisible(false);
83  }
84  $this->is_modification_date_field = $is_modification_date_field;
85  }
86 
87 
93  $this->setVisible(false);
94  }
95  $this->is_creation_date_field = $is_creation_date_field;
96  }
97 }