This class represents a non editable value in a property form. More...
Public Member Functions | |
| __construct ($a_title="") | |
| Constructor. | |
| checkInput () | |
| setType ($a_type) | |
| Set Type. | |
| getType () | |
| Get Type. | |
| setTitle ($a_title) | |
| Set Title. | |
| getTitle () | |
| Get Title. | |
| setInfo ($a_info) | |
| Set Information Text. | |
| getInfo () | |
| Get Information Text. | |
| setValue ($a_value) | |
| Set Value. | |
| getValue () | |
| Get Value. | |
| insert (&$a_tpl) | |
| Insert property html. | |
Protected Attributes | |
| $type | |
| $value | |
| $title | |
| $info | |
| $section_icon | |
This class represents a non editable value in a property form.
Definition at line 31 of file class.ilNonEditableValueGUI.php.
| ilNonEditableValueGUI::__construct | ( | $ | a_title = "" |
) |
Constructor.
Definition at line 44 of file class.ilNonEditableValueGUI.php.
References setTitle(), and setType().
Here is the call graph for this function:| ilNonEditableValueGUI::checkInput | ( | ) |
Definition at line 50 of file class.ilNonEditableValueGUI.php.
{
return true;
}
| ilNonEditableValueGUI::getInfo | ( | ) |
Get Information Text.
Definition at line 110 of file class.ilNonEditableValueGUI.php.
{
return $this->info;
}
| ilNonEditableValueGUI::getTitle | ( | ) |
Get Title.
Definition at line 90 of file class.ilNonEditableValueGUI.php.
{
return $this->title;
}
| ilNonEditableValueGUI::getType | ( | ) |
Get Type.
Definition at line 70 of file class.ilNonEditableValueGUI.php.
{
return $this->type;
}
| ilNonEditableValueGUI::getValue | ( | ) |
Get Value.
Definition at line 130 of file class.ilNonEditableValueGUI.php.
Referenced by insert().
{
return $this->value;
}
Here is the caller graph for this function:| ilNonEditableValueGUI::insert | ( | &$ | a_tpl | ) |
Insert property html.
Definition at line 139 of file class.ilNonEditableValueGUI.php.
References getValue().
{
$a_tpl->setCurrentBlock("non_editable_value");
$a_tpl->setVariable("VALUE", $this->getValue());
$a_tpl->parseCurrentBlock();
}
Here is the call graph for this function:| ilNonEditableValueGUI::setInfo | ( | $ | a_info | ) |
Set Information Text.
| string | $a_info Information Text |
Definition at line 100 of file class.ilNonEditableValueGUI.php.
{
$this->info = $a_info;
}
| ilNonEditableValueGUI::setTitle | ( | $ | a_title | ) |
Set Title.
| string | $a_title Title |
Definition at line 80 of file class.ilNonEditableValueGUI.php.
Referenced by __construct().
{
$this->title = $a_title;
}
Here is the caller graph for this function:| ilNonEditableValueGUI::setType | ( | $ | a_type | ) |
Set Type.
| string | $a_type Type |
Definition at line 60 of file class.ilNonEditableValueGUI.php.
Referenced by __construct().
{
$this->type = $a_type;
}
Here is the caller graph for this function:| ilNonEditableValueGUI::setValue | ( | $ | a_value | ) |
Set Value.
| string | $a_value Value |
Definition at line 120 of file class.ilNonEditableValueGUI.php.
{
$this->value = $a_value;
}
ilNonEditableValueGUI::$info [protected] |
Definition at line 36 of file class.ilNonEditableValueGUI.php.
ilNonEditableValueGUI::$section_icon [protected] |
Definition at line 37 of file class.ilNonEditableValueGUI.php.
ilNonEditableValueGUI::$title [protected] |
Definition at line 35 of file class.ilNonEditableValueGUI.php.
ilNonEditableValueGUI::$type [protected] |
Definition at line 33 of file class.ilNonEditableValueGUI.php.
ilNonEditableValueGUI::$value [protected] |
Definition at line 34 of file class.ilNonEditableValueGUI.php.
1.7.1