当前位置: 首页>>代码示例>>PHP>>正文


PHP ilCheckboxInputGUI::checkInput方法代码示例

本文整理汇总了PHP中ilCheckboxInputGUI::checkInput方法的典型用法代码示例。如果您正苦于以下问题:PHP ilCheckboxInputGUI::checkInput方法的具体用法?PHP ilCheckboxInputGUI::checkInput怎么用?PHP ilCheckboxInputGUI::checkInput使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ilCheckboxInputGUI的用法示例。


在下文中一共展示了ilCheckboxInputGUI::checkInput方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: checkInput

 public function checkInput()
 {
     if ($this->getRequired() && !isset($_POST[$this->getPostVar()])) {
         global $lng;
         $this->setAlert($lng->txt("msg_input_is_required"));
         return false;
     }
     return parent::checkInput();
 }
开发者ID:arlendotcn,项目名称:ilias,代码行数:9,代码来源:class.ilDclCheckboxInputGUI.php

示例2: addAdditionalFormElements

 /**
  * Allows to add additional form fields to the certificate editor form
  * This method will be called when the certificate editor form will built
  * using the ilPropertyFormGUI class. Additional fields will be added at the
  * bottom of the form.
  *
  * @param object $form An ilPropertyFormGUI instance
  * @param array $form_fields An array containing the form values. The array keys are the names of the form fields
  */
 public function addAdditionalFormElements(&$form, $form_fields)
 {
     global $lng;
     $short_name = new ilTextInputGUI($lng->txt("certificate_short_name"), "short_name");
     $short_name->setRequired(TRUE);
     require_once "./Services/Utilities/classes/class.ilStr.php";
     $short_name->setValue(strlen($form_fields["short_name"]) ? $form_fields["short_name"] : ilStr::subStr($this->object->getTitle(), 0, 30));
     $short_name->setSize(30);
     if (strlen($form_fields["short_name"])) {
         $short_name->setInfo(str_replace("[SHORT_TITLE]", $form_fields["short_name"], $lng->txt("certificate_short_name_description")));
     } else {
         $short_name->setInfo($lng->txt("certificate_short_name_description"));
     }
     if (count($_POST)) {
         $short_name->checkInput();
     }
     $form->addItem($short_name);
     $visibility = new ilCheckboxInputGUI($lng->txt("certificate_enabled_scorm"), "certificate_enabled_scorm");
     $visibility->setInfo($lng->txt("certificate_enabled_scorm_introduction"));
     $visibility->setValue(1);
     if ($form_fields["certificate_enabled_scorm"]) {
         $visibility->setChecked(TRUE);
     }
     if (count($_POST)) {
         $visibility->checkInput();
     }
     $form->addItem($visibility);
 }
开发者ID:khanhnnvn,项目名称:ilias_E-learning,代码行数:37,代码来源:class.ilSCORMCertificateAdapter.php


注:本文中的ilCheckboxInputGUI::checkInput方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。