| Server IP : 172.67.187.206 / Your IP : 172.71.28.155 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/myschool/triamudom/tuprblearn/portfolio/download/ |
Upload File : |
<?php
require_once($CFG->libdir . '/portfoliolib.php');
require_once($CFG->libdir . '/portfolio/plugin.php');
class portfolio_plugin_download extends portfolio_plugin_pull_base {
protected $exportconfig;
public static function get_name() {
return get_string('pluginname', 'portfolio_download');
}
public static function allows_multiple_instances() {
return false;
}
public function expected_time($callertime) {
return PORTFOLIO_TIME_LOW;
}
public function prepare_package() {
$files = $this->exporter->get_tempfiles();
if (count($files) == 1) {
$this->set('file', array_shift($files));
} else {
$this->set('file', $this->exporter->zip_tempfiles()); // this will throw a file_exception which the exporter catches separately.
}
}
public function steal_control($stage) {
if ($stage == PORTFOLIO_STAGE_FINISHED) {
global $CFG;
return $CFG->wwwroot . '/portfolio/download/file.php?id=' . $this->get('exporter')->get('id');
}
}
public function send_package() {}
public function verify_file_request_params($params) {
// for download plugin the only thing we need to verify is that
// the logged in user is the same as the exporting user
global $USER;
if ($USER->id != $this->user->id) {
return false;
}
return true;
}
public function get_interactive_continue_url() {
return false;
}
}