????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.17.73.197 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 : /var/www/icad.astacus.se/sharepoint/vendor/vgrem/php-spo/src/SharePoint/Publishing/ |
Upload File : |
<?php /** * This file was generated by phpSPO model generator 2019-11-16T20:26:56+00:00 16.0.19506.12022 */ namespace Office365\SharePoint\Publishing; use Office365\Runtime\ClientObject; use Office365\Runtime\ResourcePath; class VideoChannel extends ClientObject { public function getId() { return $this->getProperty("Id"); } public function getTitle() { return $this->getProperty("Title"); } public function getDescription() { return $this->getProperty("Description"); } public function getServerRelativeUrl() { return $this->getProperty("ServerRelativeUrl"); } public function getTileHtmlColor() { return $this->getProperty("TileHtmlColor"); } /** * @return VideoCollection */ public function GetAllVideos() { return new VideoCollection($this->getContext(), new ResourcePath("GetAllVideos", $this->getResourcePath())); } /** * @return SpotlightVideoCollection */ public function getSpotlightVideos() { return new SpotlightVideoCollection($this->getContext(), new ResourcePath("SpotlightVideos", $this->getResourcePath())); } /** * @return VideoCollection */ public function getVideos() { return new VideoCollection($this->getContext(), new ResourcePath("Videos", $this->getResourcePath())); } public function getServerTypeName() { return implode(".", array("SP", "Publishing", parent::getServerTypeName())); } /** * @return bool */ public function getCanAdministrateByCurrent() { if (!$this->isPropertyAvailable("CanAdministrateByCurrent")) { return null; } return $this->getProperty("CanAdministrateByCurrent"); } /** * @var bool */ public function setCanAdministrateByCurrent($value) { $this->setProperty("CanAdministrateByCurrent", $value, true); } /** * @return bool */ public function getCanEditByCurrent() { if (!$this->isPropertyAvailable("CanEditByCurrent")) { return null; } return $this->getProperty("CanEditByCurrent"); } /** * @var bool */ public function setCanEditByCurrent($value) { $this->setProperty("CanEditByCurrent", $value, true); } /** * @return bool */ public function getCanViewByCurrent() { if (!$this->isPropertyAvailable("CanViewByCurrent")) { return null; } return $this->getProperty("CanViewByCurrent"); } /** * @var bool */ public function setCanViewByCurrent($value) { $this->setProperty("CanViewByCurrent", $value, true); } /** * @return string */ public function getChannelPageUrl() { if (!$this->isPropertyAvailable("ChannelPageUrl")) { return null; } return $this->getProperty("ChannelPageUrl"); } /** * @var string */ public function setChannelPageUrl($value) { $this->setProperty("ChannelPageUrl", $value, true); } /** * @var string */ public function setDescription($value) { $this->setProperty("Description", $value, true); } /** * @return integer */ public function getDownloadUrlVisibleMinPermission() { if (!$this->isPropertyAvailable("DownloadUrlVisibleMinPermission")) { return null; } return $this->getProperty("DownloadUrlVisibleMinPermission"); } /** * @var integer */ public function setDownloadUrlVisibleMinPermission($value) { $this->setProperty("DownloadUrlVisibleMinPermission", $value, true); } /** * @return string */ public function getFullUrl() { if (!$this->isPropertyAvailable("FullUrl")) { return null; } return $this->getProperty("FullUrl"); } /** * @var string */ public function setFullUrl($value) { $this->setProperty("FullUrl", $value, true); } /** * @var string */ public function setId($value) { $this->setProperty("Id", $value, true); } /** * @var string */ public function setServerRelativeUrl($value) { $this->setProperty("ServerRelativeUrl", $value, true); } /** * @return bool */ public function getShareByEmailEnabled() { if (!$this->isPropertyAvailable("ShareByEmailEnabled")) { return null; } return $this->getProperty("ShareByEmailEnabled"); } /** * @var bool */ public function setShareByEmailEnabled($value) { $this->setProperty("ShareByEmailEnabled", $value, true); } /** * @var string */ public function setTileHtmlColor($value) { $this->setProperty("TileHtmlColor", $value, true); } /** * @var string */ public function setTitle($value) { $this->setProperty("Title", $value, true); } /** * @return integer */ public function getYammerDefaultGroupId() { if (!$this->isPropertyAvailable("YammerDefaultGroupId")) { return null; } return $this->getProperty("YammerDefaultGroupId"); } /** * @var integer */ public function setYammerDefaultGroupId($value) { $this->setProperty("YammerDefaultGroupId", $value, true); } /** * @return bool */ public function getYammerEnabled() { if (!$this->isPropertyAvailable("YammerEnabled")) { return null; } return $this->getProperty("YammerEnabled"); } /** * @var bool */ public function setYammerEnabled($value) { $this->setProperty("YammerEnabled", $value, true); } }