本文整理汇总了PHP中ilNumberInputGUI::setMaxvalueShouldBeLess方法的典型用法代码示例。如果您正苦于以下问题:PHP ilNumberInputGUI::setMaxvalueShouldBeLess方法的具体用法?PHP ilNumberInputGUI::setMaxvalueShouldBeLess怎么用?PHP ilNumberInputGUI::setMaxvalueShouldBeLess使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ilNumberInputGUI
的用法示例。
在下文中一共展示了ilNumberInputGUI::setMaxvalueShouldBeLess方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initPreviewSettingsForm
/**
* Initializes the preview settings form.
*/
private function initPreviewSettingsForm()
{
global $ilCtrl, $lng;
require_once "./Services/Form/classes/class.ilPropertyFormGUI.php";
$form = new ilPropertyFormGUI();
$form->setFormAction($ilCtrl->getFormAction($this));
$form->setTitle($lng->txt("settings"));
require_once "Services/Preview/classes/class.ilPreviewSettings.php";
// drag and drop file upload in repository
$chk_prop = new ilCheckboxInputGUI($lng->txt("enable_preview"), "enable_preview");
$chk_prop->setValue('1');
$chk_prop->setChecked(ilPreviewSettings::isPreviewEnabled());
$chk_prop->setInfo($lng->txt('enable_preview_info'));
$form->addItem($chk_prop);
$num_prop = new ilNumberInputGUI($lng->txt("max_previews_per_object"), "max_previews_per_object");
$num_prop->setDecimals(0);
$num_prop->setMinValue(1);
$num_prop->setMinvalueShouldBeGreater(false);
$num_prop->setMaxValue(ilPreviewSettings::MAX_PREVIEWS_MAX);
$num_prop->setMaxvalueShouldBeLess(false);
$num_prop->setMaxLength(5);
$num_prop->setSize(10);
$num_prop->setValue(ilPreviewSettings::getMaximumPreviews());
$num_prop->setInfo($lng->txt('max_previews_per_object_info'));
$form->addItem($num_prop);
// command buttons
$form->addCommandButton('savePreviewSettings', $lng->txt('save'));
$form->addCommandButton('view', $lng->txt('cancel'));
return $form;
}