ILIAS
Release_5_0_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
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
58
public
function
setIsCreatedByField
(
$is_created_by_field
) {
59
if
(
$is_created_by_field
) {
60
$this->
setVisible
(
false
);
61
}
62
$this->is_created_by_field =
$is_created_by_field
;
63
}
64
65
69
public
function
setIsModifiedByField
(
$is_modified_by_field
) {
70
if
(
$is_modified_by_field
) {
71
$this->
setVisible
(
false
);
72
}
73
$this->is_modified_by_field =
$is_modified_by_field
;
74
}
75
76
80
public
function
setIsModificationDateField
(
$is_modification_date_field
) {
81
if
(
$is_modification_date_field
) {
82
$this->
setVisible
(
false
);
83
}
84
$this->is_modification_date_field =
$is_modification_date_field
;
85
}
86
87
91
public
function
setIsCreationDateField
(
$is_creation_date_field
) {
92
if
(
$is_creation_date_field
) {
93
$this->
setVisible
(
false
);
94
}
95
$this->is_creation_date_field =
$is_creation_date_field
;
96
}
97
}
Services
ActiveRecord
Views
Edit
class.arEditField.php
Generated on Wed Apr 27 2016 21:01:27 for ILIAS by
1.8.1.2 (using
Doxyfile
)