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


PHP navigation_node::make_active方法代码示例

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


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

示例1: load_activity

 /**
  * Loads the navigation structure for the given activity into the activities node.
  *
  * This method utilises a callback within the modules lib.php file to load the
  * content specific to activity given.
  *
  * The callback is a method: {modulename}_extend_navigation()
  * Examples:
  *  * {@see forum_extend_navigation()}
  *  * {@see workshop_extend_navigation()}
  *
  * @param cm_info|stdClass $cm
  * @param stdClass $course
  * @param navigation_node $activity
  * @return bool
  */
 protected function load_activity($cm, stdClass $course, navigation_node $activity)
 {
     global $CFG, $DB;
     // make sure we have a $cm from get_fast_modinfo as this contains activity access details
     if (!$cm instanceof cm_info) {
         $modinfo = get_fast_modinfo($course);
         $cm = $modinfo->get_cm($cm->id);
     }
     $activity->make_active();
     $file = $CFG->dirroot . '/mod/' . $cm->modname . '/lib.php';
     $function = $cm->modname . '_extend_navigation';
     if (file_exists($file)) {
         require_once $file;
         if (function_exists($function)) {
             $activtyrecord = $DB->get_record($cm->modname, array('id' => $cm->instance), '*', MUST_EXIST);
             $function($activity, $course, $activtyrecord, $cm);
             return true;
         }
     }
     $activity->nodetype = navigation_node::NODETYPE_LEAF;
     return false;
 }
开发者ID:nigeldaley,项目名称:moodle,代码行数:38,代码来源:navigationlib.php

示例2: load_activity

 /**
  * Loads the navigation structure for the given activity into the activities node.
  *
  * This method utilises a callback within the modules lib.php file to load the
  * content specific to activity given.
  *
  * The callback is a method: {modulename}_extend_navigation()
  * Examples:
  *  * {@link forum_extend_navigation()}
  *  * {@link workshop_extend_navigation()}
  *
  * @param cm_info|stdClass $cm
  * @param stdClass $course
  * @param navigation_node $activity
  * @return bool
  */
 protected function load_activity($cm, stdClass $course, navigation_node $activity)
 {
     global $CFG, $DB;
     // make sure we have a $cm from get_fast_modinfo as this contains activity access details
     if (!$cm instanceof cm_info) {
         $modinfo = get_fast_modinfo($course);
         $cm = $modinfo->get_cm($cm->id);
     }
     $activity->nodetype = navigation_node::NODETYPE_LEAF;
     $activity->make_active();
     $file = $CFG->dirroot . '/mod/' . $cm->modname . '/lib.php';
     $function = $cm->modname . '_extend_navigation';
     if (file_exists($file)) {
         require_once $file;
         if (function_exists($function)) {
             $activtyrecord = $DB->get_record($cm->modname, array('id' => $cm->instance), '*', MUST_EXIST);
             $function($activity, $course, $activtyrecord, $cm);
         }
     }
     // Allow the active advanced grading method plugin to append module navigation
     $featuresfunc = $cm->modname . '_supports';
     if (function_exists($featuresfunc) && $featuresfunc(FEATURE_ADVANCED_GRADING)) {
         require_once $CFG->dirroot . '/grade/grading/lib.php';
         $gradingman = get_grading_manager($cm->context, $cm->modname);
         $gradingman->extend_navigation($this, $activity);
     }
     return $activity->has_children();
 }
开发者ID:saurabh947,项目名称:MoodleLearning,代码行数:44,代码来源:navigationlib.php

示例3: load_activity

 /**
  * Loads the navigation structure for the given activity into the activities node.
  *
  * This method utilises a callback within the modules lib.php file to load the
  * content specific to activity given.
  *
  * The callback is a method: {modulename}_extend_navigation()
  * Examples:
  *  * {@see forum_extend_navigation()}
  *  * {@see workshop_extend_navigation()}
  *
  * @param stdClass $cm
  * @param stdClass $course
  * @param navigation_node $activity
  * @return bool
  */
 protected function load_activity(stdClass $cm, stdClass $course, navigation_node $activity)
 {
     global $CFG, $DB;
     $activity->make_active();
     $file = $CFG->dirroot . '/mod/' . $cm->modname . '/lib.php';
     $function = $cm->modname . '_extend_navigation';
     if (file_exists($file)) {
         require_once $file;
         if (function_exists($function)) {
             $activtyrecord = $DB->get_record($cm->modname, array('id' => $cm->instance), '*', MUST_EXIST);
             $function($activity, $course, $activtyrecord, $cm);
             return true;
         }
     }
     $activity->nodetype = navigation_node::NODETYPE_LEAF;
     return false;
 }
开发者ID:vuchannguyen,项目名称:web,代码行数:33,代码来源:navigationlib.php


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