You are here

public function KalturaClient::__construct in Kaltura 6.2

* Kaltura client constructor * *

Parameters

KalturaConfiguration $config:

Overrides KalturaClientBase::__construct

File

kaltura_client/KalturaClient.php, line 5338

Class

KalturaClient

Code

public function __construct(KalturaConfiguration $config) {
  parent::__construct($config);
  $this->media = new KalturaMediaService($this);
  $this->mixing = new KalturaMixingService($this);
  $this->document = new KalturaDocumentService($this);
  $this->data = new KalturaDataService($this);
  $this->baseEntry = new KalturaBaseEntryService($this);
  $this->session = new KalturaSessionService($this);
  $this->uiConf = new KalturaUiConfService($this);
  $this->playlist = new KalturaPlaylistService($this);
  $this->user = new KalturaUserService($this);
  $this->widget = new KalturaWidgetService($this);
  $this->search = new KalturaSearchService($this);
  $this->partner = new KalturaPartnerService($this);
  $this->adminUser = new KalturaAdminUserService($this);
  $this->system = new KalturaSystemService($this);
  $this->bulkUpload = new KalturaBulkUploadService($this);
  $this->notification = new KalturaNotificationService($this);
  $this->batch = new KalturaBatchService($this);
  $this->report = new KalturaReportService($this);
  $this->conversionProfile = new KalturaConversionProfileService($this);
  $this->stats = new KalturaStatsService($this);
}