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


PHP file_storage::send_test_pdf方法代碼示例

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


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

示例1: require_login

$PAGE->set_context(context_system::instance());
require_login();
require_capability('moodle/site:config', context_system::instance());
$strheading = get_string('test_unoconv', 'assignfeedback_editpdf');
$PAGE->navbar->add(get_string('administrationsite'));
$PAGE->navbar->add(get_string('plugins', 'admin'));
$PAGE->navbar->add(get_string('assignmentplugins', 'mod_assign'));
$PAGE->navbar->add(get_string('feedbackplugins', 'mod_assign'));
$PAGE->navbar->add(get_string('pluginname', 'assignfeedback_editpdf'), new moodle_url('/admin/settings.php', array('section' => 'assignfeedback_editpdf')));
$PAGE->navbar->add($strheading);
$PAGE->set_heading($strheading);
$PAGE->set_title($strheading);
if ($sendpdf) {
    require_sesskey();
    // Serve the generated test pdf.
    file_storage::send_test_pdf();
    die;
}
$result = file_storage::test_unoconv_path();
switch ($result->status) {
    case file_storage::UNOCONVPATH_OK:
        $msg = $OUTPUT->notification(get_string('test_unoconvok', 'assignfeedback_editpdf'), 'success');
        $pdflink = new moodle_url($PAGE->url, array('sendpdf' => 1, 'sesskey' => sesskey()));
        $msg .= html_writer::link($pdflink, get_string('test_unoconvdownload', 'assignfeedback_editpdf'));
        $msg .= html_writer::empty_tag('br');
        break;
    case file_storage::UNOCONVPATH_ERROR:
        $msg = $OUTPUT->notification($result->message, 'warning');
        break;
    default:
        $msg = $OUTPUT->notification(get_string("test_unoconv{$result->status}", 'assignfeedback_editpdf'), 'warning');
開發者ID:IFPBMoodle,項目名稱:moodle,代碼行數:31,代碼來源:testunoconv.php


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