ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilDclBooleanFieldRepresentation.php
Go to the documentation of this file.
1<?php
2
10{
11 public function getInputField(ilPropertyFormGUI $form, $record_id = 0)
12 {
13 $input = new ilDclCheckboxInputGUI($this->getField()->getTitle(), 'field_' . $this->getField()->getId());
14 $this->setupInputField($input, $this->getField());
15
16 return $input;
17 }
18
20 {
21 $input = $table->addFilterItemByMetaType("filter_" . $this->getField()->getId(), ilTable2GUI::FILTER_SELECT, false, $this->getField()->getId());
22 $input->setOptions(array(
23 "" => $this->lng->txt("dcl_any"),
24 "not_checked" => $this->lng->txt("dcl_not_checked"),
25 "checked" => $this->lng->txt("dcl_checked")
26 ));
27
28 $this->setupFilterInputField($input);
29
30 return $this->getFilterInputFieldValue($input);
31 }
32
33
34 public function passThroughFilter(ilDclBaseRecordModel $record, $filter)
35 {
36 $value = $record->getRecordFieldValue($this->getField()->getId());
37 if ((($filter == "checked" && $value == 1) || ($filter == "not_checked" && $value == 0)) || $filter == '' || !$filter) {
38 return true;
39 }
40 return false;
41 }
42}
An exception for terminatinating execution or to throw for unit testing.
Class ilDclBaseFieldRepresentation.
setupInputField(ilFormPropertyGUI $input, ilDclBaseFieldModel $field)
Sets basic settings on field-input.
setupFilterInputField(ilFormPropertyGUI $input)
Set basic settings for filter-input-gui.
Class ilDclBaseRecordModel.
getRecordFieldValue($field_id)
Get Field Value.
Class ilDclFileuploadFieldRepresentaion.
addFilterInputFieldToTable(ilTable2GUI $table)
Add filter input to TableGUI.
getInputField(ilPropertyFormGUI $form, $record_id=0)
Returns field-input.
passThroughFilter(ilDclBaseRecordModel $record, $filter)
Checks if a filter affects a record.
Class ilDclCheckboxInputGUI.
This class represents a property form user interface.
Class ilTable2GUI.
if(empty($password)) $table
Definition: pwgen.php:24
if(isset($_POST['submit'])) $form