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


PHP api::list_plans_to_review方法代码示例

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


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

示例1: __construct

 /**
  * Constructor.
  * @param stdClass $user The user.
  */
 public function __construct($user = null)
 {
     global $USER;
     if (!$user) {
         $user = $USER;
     }
     $this->user = $user;
     // Get the plans.
     $this->plans = api::list_user_plans($this->user->id);
     // Get the competencies to review.
     $this->compstoreview = api::list_user_competencies_to_review(0, 3);
     // Get the plans to review.
     $this->planstoreview = api::list_plans_to_review(0, 3);
 }
开发者ID:evltuma,项目名称:moodle,代码行数:18,代码来源:summary.php

示例2: test_list_plans_to_review

 public function test_list_plans_to_review()
 {
     $dg = $this->getDataGenerator();
     $this->resetAfterTest();
     $ccg = $dg->get_plugin_generator('core_competency');
     $sysctx = context_system::instance();
     $this->setAdminUser();
     $reviewer = $dg->create_user();
     $roleallow = $dg->create_role();
     $roleprohibit = $dg->create_role();
     assign_capability('moodle/competency:planreview', CAP_ALLOW, $roleallow, $sysctx->id);
     assign_capability('moodle/competency:planreview', CAP_PROHIBIT, $roleprohibit, $sysctx->id);
     role_assign($roleallow, $reviewer->id, $sysctx->id);
     accesslib_clear_all_caches_for_unit_testing();
     $u1 = $dg->create_user();
     $u2 = $dg->create_user();
     $f1 = $ccg->create_framework();
     $comp1 = $ccg->create_competency(['competencyframeworkid' => $f1->get_id()]);
     $p1a = $ccg->create_plan(['userid' => $u1->id, 'status' => plan::STATUS_WAITING_FOR_REVIEW]);
     $p1b = $ccg->create_plan(['userid' => $u1->id, 'status' => plan::STATUS_IN_REVIEW, 'reviewerid' => $reviewer->id]);
     $p1c = $ccg->create_plan(['userid' => $u1->id, 'status' => plan::STATUS_DRAFT]);
     $p2a = $ccg->create_plan(['userid' => $u2->id, 'status' => plan::STATUS_WAITING_FOR_REVIEW]);
     $p2b = $ccg->create_plan(['userid' => $u2->id, 'status' => plan::STATUS_IN_REVIEW]);
     $p2c = $ccg->create_plan(['userid' => $u2->id, 'status' => plan::STATUS_ACTIVE]);
     $p2d = $ccg->create_plan(['userid' => $u2->id, 'status' => plan::STATUS_ACTIVE]);
     api::complete_plan($p2d);
     // The reviewer can review all plans waiting for review, or in review where they are the reviewer.
     $this->setUser($reviewer);
     $result = api::list_plans_to_review();
     $this->assertEquals(3, $result['count']);
     $this->assertEquals($p1a->get_id(), $result['plans'][0]->plan->get_id());
     $this->assertEquals($p1b->get_id(), $result['plans'][1]->plan->get_id());
     $this->assertEquals($p2a->get_id(), $result['plans'][2]->plan->get_id());
     // The reviewer cannot view the plans when they do not have the permission in the user's context.
     role_assign($roleprohibit, $reviewer->id, context_user::instance($u2->id)->id);
     accesslib_clear_all_caches_for_unit_testing();
     $result = api::list_plans_to_review();
     $this->assertEquals(2, $result['count']);
     $this->assertEquals($p1a->get_id(), $result['plans'][0]->plan->get_id());
     $this->assertEquals($p1b->get_id(), $result['plans'][1]->plan->get_id());
 }
开发者ID:dg711,项目名称:moodle,代码行数:41,代码来源:api_test.php

示例3: __construct

 /**
  * Constructor.
  */
 public function __construct()
 {
     $this->planstoreview = api::list_plans_to_review(0, 1000);
 }
开发者ID:evltuma,项目名称:moodle,代码行数:7,代码来源:plans_to_review_page.php


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