How to change the Terms of Use link in Drupal Contributor Wizard

Overview

The Kaltura Network Terms of Use can be reviewed here . However, when hosting the content locally the user may change those terms of use. In order to do so:

  • Go to kaltura_client/kaltura_helpers.php and find the getContributionWizardFlashVars() function.
  • Replace the terms_of_use value being passed via flashVars to point to your own terms of use page. The following line should be changed from:
    $flashVars["terms_of_use"]      = "http://corp.kaltura.com/tandc";
    To:
    $flashVars["terms_of_use"]      = "Full URL to your terms of use page";