ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilADTBooleanPresentationBridge Class Reference
+ Inheritance diagram for ilADTBooleanPresentationBridge:
+ Collaboration diagram for ilADTBooleanPresentationBridge:

Public Member Functions

 getHTML ()
 Get HTML presentation. More...
 
 getSortable ()
 Get sortable value presentation. More...
 
- Public Member Functions inherited from ilADTPresentationBridge
 __construct (ilADT $a_adt)
 Constructor. More...
 
 getADT ()
 Get ADT. More...
 
 getList ()
 Get list presentation. More...
 
 getHTML ()
 Get HTML presentation. More...
 
 getSortable ()
 Get sortable value presentation. More...
 
 setDecoratorCallBack ($a_callback)
 Set decorator callback. More...
 

Protected Member Functions

 isValidADT (ilADT $a_adt)
 Check if given ADT is valid. More...
 
- Protected Member Functions inherited from ilADTPresentationBridge
 isValidADT (ilADT $a_adt)
 Check if given ADT is valid. More...
 
 setADT (ilADT $a_adt)
 Set ADT. More...
 
 decorate ($a_value)
 Decorate value. More...
 

Additional Inherited Members

- Protected Attributes inherited from ilADTPresentationBridge
 $adt
 
 $decorator
 

Detailed Description

Definition at line 5 of file class.ilADTBooleanPresentationBridge.php.

Member Function Documentation

◆ getHTML()

ilADTBooleanPresentationBridge::getHTML ( )

Get HTML presentation.

Returns
string

Reimplemented from ilADTPresentationBridge.

Definition at line 12 of file class.ilADTBooleanPresentationBridge.php.

13 {
14 global $lng;
15
16 if(!$this->getADT()->isNull())
17 {
18 // :TODO: force icon?
19
20 $presentation_value = $this->getADT()->getStatus()
21 ? $lng->txt("yes")
22 : $lng->txt("no");
23 return $this->decorate($presentation_value);
24 }
25 }
global $lng
Definition: privfeed.php:40

References $lng, ilADTPresentationBridge\decorate(), and ilADTPresentationBridge\getADT().

+ Here is the call graph for this function:

◆ getSortable()

ilADTBooleanPresentationBridge::getSortable ( )

Get sortable value presentation.

Returns
mixed

Reimplemented from ilADTPresentationBridge.

Definition at line 27 of file class.ilADTBooleanPresentationBridge.php.

28 {
29 if(!$this->getADT()->isNull())
30 {
31 // :TODO: cast to int ?
32 return $this->getADT()->getStatus() ? 1 : 0;
33 }
34 }

References ilADTPresentationBridge\getADT().

+ Here is the call graph for this function:

◆ isValidADT()

ilADTBooleanPresentationBridge::isValidADT ( ilADT  $a_adt)
protected

Check if given ADT is valid.

:TODO: This could be avoided with type-specifc constructors :TODO: bridge base class?

Parameters
ilADT$a_adt

Reimplemented from ilADTPresentationBridge.

Definition at line 7 of file class.ilADTBooleanPresentationBridge.php.

8 {
9 return ($a_adt instanceof ilADTBoolean);
10 }

The documentation for this class was generated from the following file: