當前位置: 首頁>>代碼示例>>PHP>>正文


PHP base::validate_data方法代碼示例

本文整理匯總了PHP中core\event\base::validate_data方法的典型用法代碼示例。如果您正苦於以下問題:PHP base::validate_data方法的具體用法?PHP base::validate_data怎麽用?PHP base::validate_data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在core\event\base的用法示例。


在下文中一共展示了base::validate_data方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->other['subscriptionid'])) {
         throw new \coding_exception('The \'subscriptionid\' value must be set in other.');
     }
 }
開發者ID:janaece,項目名稱:globalclassroom4_clean,代碼行數:13,代碼來源:subscription_criteria_met.php

示例2: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  */
 protected function validate_data()
 {
     parent::validate_data();
     if ($this->contextlevel != CONTEXT_MODULE) {
         throw new \coding_exception('Context level must be CONTEXT_MODULE.');
     }
 }
開發者ID:ninelanterns,項目名稱:moodle-mod_scheduler,代碼行數:12,代碼來源:scheduler_base.php

示例3: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->other['itemid'])) {
         throw new \coding_exception('The itemid needs to be set in $other');
     }
 }
開發者ID:parksandwildlife,項目名稱:learning,代碼行數:13,代碼來源:rating_created.php

示例4: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->relateduserid)) {
         throw new \coding_exception('The \'relateduserid\' must be set.');
     }
 }
開發者ID:advancingdesign,項目名稱:moodle-local_enrolmentreminder,代碼行數:13,代碼來源:message_sent.php

示例5: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->other['title'])) {
         throw new \coding_exception('The \'title\' value must be set in the object.');
     }
 }
開發者ID:unikent,項目名稱:moodle-mod_qa,代碼行數:13,代碼來源:question_posted.php

示例6: validate_data

 /**
  * Custom validations.
  *
  * @throws \coding_exception when validation fails.
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     // Make sure this class is never used without proper object details.
     if (!$this->contextlevel === CONTEXT_MODULE) {
         throw new \coding_exception('Context level must be CONTEXT_MODULE.');
     }
 }
開發者ID:evltuma,項目名稱:moodle,代碼行數:14,代碼來源:content_page_viewed.php

示例7: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->relateduserid)) {
         debugging('The \'relateduserid\' value must be specified in the event.', DEBUG_DEVELOPER);
         $this->relateduserid = $this->objectid;
     }
 }
開發者ID:sebastianberm,項目名稱:moodle-block_coupon,代碼行數:14,代碼來源:coupon_used.php

示例8: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (empty($this->other['mode'])) {
         throw new \coding_exception('The \'mode\' value must be set in other.');
     }
     if (empty($this->relateduserid)) {
         throw new \coding_exception('The \'relateduserid\' must be set.');
     }
 }
開發者ID:posttechguy,項目名稱:moodle-tbst2-report_log,代碼行數:16,代碼來源:user_report_viewed.php

示例9: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->other['desc'])) {
         throw new \coding_exception('The \'desc\' value must be set in other.');
     }
     if ($this->contextlevel != CONTEXT_MODULE) {
         throw new \coding_exception('Context level must be CONTEXT_MODULE.');
     }
 }
開發者ID:ccle,項目名稱:moodle-mod_turnitintool,代碼行數:16,代碼來源:delete_submission.php

示例10: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception when validation does not pass.
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->other['dataid'])) {
         throw new \coding_exception('The dataid must be set in $other.');
     }
     if (!isset($this->other['viewid'])) {
         throw new \coding_exception('The viewid must be set in $other.');
     }
 }
開發者ID:parksandwildlife,項目名稱:learning,代碼行數:16,代碼來源:view_base.php

示例11: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     // Make sure this class is never used without proper object details.
     if (empty($this->objectid) || empty($this->objecttable)) {
         throw new \coding_exception('The course_module_viewed event must define objectid and object table.');
     }
     // Make sure the context level is set to module.
     if ($this->contextlevel != CONTEXT_MODULE) {
         throw new \coding_exception('Context level must be CONTEXT_MODULE.');
     }
 }
開發者ID:evltuma,項目名稱:moodle,代碼行數:18,代碼來源:all_files_downloaded.php

示例12: validate_data

 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->userid)) {
         throw new \coding_exception('The user id must be set.');
     }
     if (!isset($this->courseid)) {
         throw new \coding_exception('The course id must be set.');
     }
     if (!isset($this->other['quizcmid']) && !isset($this->other['qcatid'])) {
         throw new \coding_exception('Either the quiz course module id or the question category id must be set.');
     }
 }
開發者ID:MoodleMetaData,項目名稱:MoodleMetaData,代碼行數:13,代碼來源:questions_retrieved.php

示例13: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->other['tourid'])) {
         throw new \coding_exception('The \'tourid\' value must be set in other.');
     }
     if (!isset($this->other['stepindex'])) {
         throw new \coding_exception('The \'stepindex\' value must be set in other.');
     }
     if (!isset($this->other['pageurl'])) {
         throw new \coding_exception('The \'pageurl\' value must be set in other.');
     }
 }
開發者ID:dg711,項目名稱:moodle,代碼行數:19,代碼來源:step_shown.php

示例14: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (empty($this->other['attemptid'])) {
         throw new \coding_exception("The 'attemptid' must be set in other.");
     }
     if (empty($this->other['cmielement'])) {
         throw new \coding_exception("The 'cmielement' must be set in other.");
     }
     // Trust that 'cmielement' represents a valid CMI datamodel element:
     // just check that the given value starts with 'cmi.'.
     if (strpos($this->other['cmielement'], 'cmi.', 0) !== 0) {
         throw new \coding_exception("A valid 'cmielement' must start with 'cmi.' ({$this->other['cmielement']}).");
     }
     // Warning: 'cmivalue' could be also "0" e.g. when 'cmielement' represents a score.
     if (!isset($this->other['cmivalue'])) {
         throw new \coding_exception("The 'cmivalue' must be set in other.");
     }
 }
開發者ID:gabrielrosset,項目名稱:moodle,代碼行數:25,代碼來源:cmielement_submitted.php

示例15: validate_data

 /**
  * Custom validation.
  *
  * @throws \coding_exception
  * @return void
  */
 protected function validate_data()
 {
     parent::validate_data();
     if (!isset($this->relateduserid)) {
         throw new \coding_exception('The \'relateduserid\' must be set.');
     }
     if (!isset($this->other['forumid'])) {
         throw new \coding_exception('The \'forumid\' value must be set in other.');
     }
     if (!isset($this->other['discussion'])) {
         throw new \coding_exception('The \'discussion\' value must be set in other.');
     }
     if ($this->contextlevel != CONTEXT_MODULE) {
         throw new \coding_exception('Context level must be CONTEXT_MODULE.');
     }
 }
開發者ID:janaece,項目名稱:globalclassroom4_clean,代碼行數:22,代碼來源:discussion_subscription_created.php


注:本文中的core\event\base::validate_data方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。