Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing dynamic properties #771

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sdk/oauthsimple.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ class OAuthSimple {
protected $_default_signature_method;
protected $_action;
protected $_nonce_chars;
protected $_parameters;
protected $_path;
protected $oauth_body_hash;
protected $sbs;
protected $path;

/**
* Constructor
Expand Down
2 changes: 1 addition & 1 deletion turnitintooltwo_assignment.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ public static function create_moodle_course($tiicourseid, $tiicoursetitle, $cour
* @param int $ownerid The owner of the course
* @return object the turnitin course if created
*/
public function create_tii_course($course, $ownerid) {
public function create_tii_course($course, $ownerid, $workflowcontext = "site") {
global $DB;

$turnitincomms = new turnitintooltwo_comms();
Expand Down
3 changes: 3 additions & 0 deletions turnitintooltwo_submission.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,13 @@ class turnitintooltwo_submission {
private $submission_unanonreason;
public $submission_transmatch;
private $submission_instructors;
private $submission_hash;
public $submission_orcapable;
public $submission_acceptnothing;
public $overallgrade;
private $receipt;
private $instructor_receipt;
private $migrate_gradebook;

public function __construct($id = 0, $idtype = "moodle", $turnitintooltwoassignment = "", $partid = "") {
$this->receipt = new receipt_message();
Expand Down