本文整理汇总了PHP中context_system::get_context方法的典型用法代码示例。如果您正苦于以下问题:PHP context_system::get_context方法的具体用法?PHP context_system::get_context怎么用?PHP context_system::get_context使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类context_system
的用法示例。
在下文中一共展示了context_system::get_context方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: print_entry
/**
* Prints the entry form/page for this enrolment
*
* This is only called from course/enrol.php
* Most plugins will probably override this to print payment
* forms etc, or even just a notice to say that manual enrolment
* is disabled
*
* @param course current course object
*/
function print_entry($course)
{
global $CFG, $USER, $SESSION, $THEME;
$strloginto = get_string('loginto', '', $course->shortname);
$strcourses = get_string('courses');
$context = context_system::get_context();
$navlinks = array();
$navlinks[] = array('name' => $strcourses, 'link' => ".", 'type' => 'misc');
$navlinks[] = array('name' => $strloginto, 'link' => null, 'type' => 'misc');
$navigation = build_navigation($navlinks);
// if we get here we are going to display the BUY COURSE message
print_header($strloginto, $course->fullname, $navigation, "form.password");
include "{$CFG->dirroot}/enrol/joomdle/enrol.html";
print_footer();
}