本文整理汇总了PHP中ilPropertyFormGUI::addTextAreaProperty方法的典型用法代码示例。如果您正苦于以下问题:PHP ilPropertyFormGUI::addTextAreaProperty方法的具体用法?PHP ilPropertyFormGUI::addTextAreaProperty怎么用?PHP ilPropertyFormGUI::addTextAreaProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ilPropertyFormGUI
的用法示例。
在下文中一共展示了ilPropertyFormGUI::addTextAreaProperty方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: outputFormHtmlBlock
/**
* FORM HtmlBlock: Output form.
*
*/
public function outputFormHtmlBlock()
{
global $lng;
$lng->loadLanguageModule("block");
include "Services/Form/classes/class.ilPropertyFormGUI.php";
$form_gui = new ilPropertyFormGUI();
$values = $this->getValuesHtmlBlock();
// Property Title
$alert = $this->form_check["HtmlBlock"]["Title"]["error"] != "" ? $this->form_check["HtmlBlock"]["Title"]["error"] : "";
$form_gui->addTextProperty($lng->txt("block_html_block_title"), "block_title", $values["Title"], "", $alert, true, "200");
// Property Content
$alert = $this->form_check["HtmlBlock"]["Content"]["error"] != "" ? $this->form_check["HtmlBlock"]["Content"]["error"] : "";
$form_gui->addTextAreaProperty($lng->txt("block_html_block_content"), "block_content", $values["Content"], "", $alert, false, "40", "8", true);
// save and cancel commands
if (in_array($this->getFormEditMode(), array(IL_FORM_CREATE, IL_FORM_RE_CREATE))) {
$form_gui->addCommandButton("saveHtmlBlock", $lng->txt("save"));
$form_gui->addCommandButton("cancelSaveHtmlBlock", $lng->txt("cancel"));
} else {
$form_gui->addCommandButton("updateHtmlBlock", $lng->txt("save"));
$form_gui->addCommandButton("cancelUpdateHtmlBlock", $lng->txt("cancel"));
}
$form_gui->setTitle($lng->txt("block_html_block_head"));
$form_gui->setFormAction($this->ctrl->getFormAction($this));
// individual preparation of form
$this->prepareFormHtmlBlock($form_gui);
return $form_gui->getHTML();
}