コード例 #1
0
 /**
  * Checks that Ghostscript is installed.
  *
  * @Given /^ghostscript is installed$/
  */
 public function ghostscript_is_installed()
 {
     $testpath = assignfeedback_editpdf\pdf::test_gs_path();
     if (!extension_loaded('zlib') or $testpath->status !== assignfeedback_editpdf\pdf::GSPATH_OK) {
         throw new \Moodle\BehatExtension\Exception\SkippedException();
     }
 }
コード例 #2
0
ファイル: testgs.php プロジェクト: evltuma/moodle
require_capability('moodle/site:config', context_system::instance());
$strheading = get_string('testgs', '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?section=assignfeedback_editpdf'));
$PAGE->navbar->add($strheading);
$PAGE->set_heading($strheading);
$PAGE->set_title($strheading);
if (optional_param('sendimage', false, PARAM_BOOL)) {
    // Serve the generated test image.
    assignfeedback_editpdf\pdf::send_test_image();
    die;
}
$result = assignfeedback_editpdf\pdf::test_gs_path();
switch ($result->status) {
    case assignfeedback_editpdf\pdf::GSPATH_OK:
        $msg = get_string('test_ok', 'assignfeedback_editpdf');
        $msg .= html_writer::empty_tag('br');
        $imgurl = new moodle_url($PAGE->url, array('sendimage' => 1));
        $msg .= html_writer::empty_tag('img', array('src' => $imgurl, 'alt' => get_string('gsimage', 'assignfeedback_editpdf')));
        break;
    case assignfeedback_editpdf\pdf::GSPATH_ERROR:
        $msg = $result->message;
        break;
    default:
        $msg = get_string("test_{$result->status}", 'assignfeedback_editpdf');
        break;
}
$returl = new moodle_url('/admin/settings.php', array('section' => 'assignfeedback_editpdf'));
コード例 #3
0
ファイル: locallib.php プロジェクト: alanaipe2015/moodle
 /**
  * Automatically enable or disable editpdf feedback plugin based on
  * whether the ghostscript path is set correctly.
  *
  * @return bool
  */
 public function is_enabled()
 {
     if ($this->enabledcache === null) {
         $testpath = assignfeedback_editpdf\pdf::test_gs_path(false);
         $this->enabledcache = $testpath->status == assignfeedback_editpdf\pdf::GSPATH_OK;
     }
     return $this->enabledcache;
 }
コード例 #4
0
ファイル: locallib.php プロジェクト: EmmanuelYupit/educursos
 /**
  * Automatically enable or disable editpdf feedback plugin based on
  * whether the ghostscript path is set correctly.
  *
  * @return bool
  */
 public function is_enabled()
 {
     if ($this->enabledcache === null) {
         if (!extension_loaded('zlib')) {
             $this->enabledcache = false;
         } else {
             $testpath = assignfeedback_editpdf\pdf::test_gs_path(false);
             $this->enabledcache = $testpath->status == assignfeedback_editpdf\pdf::GSPATH_OK;
         }
     }
     return $this->enabledcache;
 }
コード例 #5
0
ファイル: locallib.php プロジェクト: rwijaya/moodle
 /**
  * Automatically enable or disable editpdf feedback plugin based on
  * whether the ghostscript path is set correctly.
  *
  * @return bool
  */
 public function is_enabled() {
     $testpath = assignfeedback_editpdf\pdf::test_gs_path();
     if ($testpath->status == assignfeedback_editpdf\pdf::GSPATH_OK) {
         return true;
     }
     return false;
 }