本文整理匯總了PHP中KalturaClientPlugin::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP KalturaClientPlugin::__construct方法的具體用法?PHP KalturaClientPlugin::__construct怎麽用?PHP KalturaClientPlugin::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類KalturaClientPlugin
的用法示例。
在下文中一共展示了KalturaClientPlugin::__construct方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
protected function __construct()
{
parent::__construct();
$this->distributionProfile = new KalturaDistributionProfileService();
$this->entryDistribution = new KalturaEntryDistributionService();
$this->distributionProvider = new KalturaDistributionProviderService();
$this->genericDistributionProvider = new KalturaGenericDistributionProviderService();
$this->genericDistributionProviderAction = new KalturaGenericDistributionProviderActionService();
$this->contentDistributionBatch = new KalturaContentDistributionBatchService();
}
示例2: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->flavorParamsOutput = new KalturaFlavorParamsOutputService($client);
$this->thumbParamsOutput = new KalturaThumbParamsOutputService($client);
$this->mediaInfo = new KalturaMediaInfoService($client);
$this->entryAdmin = new KalturaEntryAdminService($client);
}
開發者ID:EfncoPlugins,項目名稱:Media-Management-based-on-Kaltura,代碼行數:8,代碼來源:KalturaAdminConsoleClientPlugin.php
示例3: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->metadata = new KalturaMetadataService($client);
$this->metadataProfile = new KalturaMetadataProfileService($client);
$this->metadataBatch = new KalturaMetadataBatchService($client);
}
開發者ID:EfncoPlugins,項目名稱:Media-Management-based-on-Kaltura,代碼行數:7,代碼來源:KalturaMetadataClientPlugin.php
示例4: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->aspera = new KalturaAsperaService($client);
}
示例5: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->Statskey = new KalturaStatskeyService($client);
}
開發者ID:EfncoPlugins,項目名稱:Media-Management-based-on-Kaltura,代碼行數:5,代碼來源:KalturaStatskeyClientPlugin.php
示例6: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->virusScanProfile = new KalturaVirusScanProfileService($client);
}
示例7: __construct
protected function __construct()
{
parent::__construct();
$this->annotation = new KalturaAnnotationService();
}
示例8: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->systemPartner = new KalturaSystemPartnerService($client);
}
開發者ID:EfncoPlugins,項目名稱:Media-Management-based-on-Kaltura,代碼行數:5,代碼來源:KalturaSystemPartnerClientPlugin.php
示例9: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->entryAdmin = new KalturaEntryAdminService($client);
$this->uiConfAdmin = new KalturaUiConfAdminService($client);
$this->reportAdmin = new KalturaReportAdminService($client);
}
示例10: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->drmProfile = new KalturaDrmProfileService($client);
}
示例11: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->shortLink = new KalturaShortLinkService($client);
}
開發者ID:EfncoPlugins,項目名稱:Media-Management-based-on-Kaltura,代碼行數:5,代碼來源:KalturaShortLinkClientPlugin.php
示例12: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->eventNotificationTemplate = new KalturaEventNotificationTemplateService($client);
}
示例13: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->KalturaInternalTools = new KalturaKalturaInternalToolsService($client);
$this->KalturaInternalToolsSystemHelper = new KalturaKalturaInternalToolsSystemHelperService($client);
}
示例14: __construct
protected function __construct(KalturaClient $client)
{
parent::__construct($client);
$this->flavorParamsOutput = new KalturaFlavorParamsOutputService($client);
$this->thumbParamsOutput = new KalturaThumbParamsOutputService($client);
$this->entryAdmin = new KalturaEntryAdminService($client);
$this->uiConfAdmin = new KalturaUiConfAdminService($client);
$this->reportAdmin = new KalturaReportAdminService($client);
}
示例15: __construct
protected function __construct()
{
parent::__construct();
$this->virusScanProfile = new KalturaVirusScanProfileService();
$this->virusScanBatch = new KalturaVirusScanBatchService();
}