本文整理匯總了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();
}