????JFIF??x?x????'403WebShell
403Webshell
Server IP : 79.136.114.73  /  Your IP : 216.73.216.172
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/UserProfiles/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/bin/vendor/vgrem/php-spo/src/SharePoint/UserProfiles/UserProfile.php
<?php

/**
 * This file was generated by phpSPO model generator 2019-11-16T20:10:00+00:00 16.0.19506.12022
 */
namespace Office365\SharePoint\UserProfiles;

use Office365\Runtime\Actions\InvokePostMethodQuery;
use Office365\Runtime\ClientRuntimeContext;
use Office365\Runtime\ClientObject;
use Office365\Runtime\ResourcePath;

class UserProfile extends ClientObject
{
    public function __construct(ClientRuntimeContext $ctx)
    {
        parent::__construct($ctx, new ResourcePath("SP.UserProfiles.ProfileLoader.getProfileLoader/getUserProfile"));
    }
    /**
     * Enqueues creating a personal site for this user, which can be used to share documents, web pages, and other files.
     */
    public function createPersonalSiteEnque()
    {
        $qry = new InvokePostMethodQuery($this, "createPersonalSiteEnque", array(false));
        $this->getContext()->addQuery($qry);
    }
    /**
     * @return string
     */
    public function getAccountName()
    {
        if (!$this->isPropertyAvailable("AccountName")) {
            return null;
        }
        return $this->getProperty("AccountName");
    }
    /**
     * @var string
     */
    public function setAccountName($value)
    {
        $this->setProperty("AccountName", $value, true);
    }
    /**
     * @return string
     */
    public function getDisplayName()
    {
        if (!$this->isPropertyAvailable("DisplayName")) {
            return null;
        }
        return $this->getProperty("DisplayName");
    }
    /**
     * @var string
     */
    public function setDisplayName($value)
    {
        $this->setProperty("DisplayName", $value, true);
    }
    /**
     * @return string
     */
    public function getFollowPersonalSiteUrl()
    {
        if (!$this->isPropertyAvailable("FollowPersonalSiteUrl")) {
            return null;
        }
        return $this->getProperty("FollowPersonalSiteUrl");
    }
    /**
     * @var string
     */
    public function setFollowPersonalSiteUrl($value)
    {
        $this->setProperty("FollowPersonalSiteUrl", $value, true);
    }
    /**
     * @return bool
     */
    public function getIsDefaultDocumentLibraryBlocked()
    {
        if (!$this->isPropertyAvailable("IsDefaultDocumentLibraryBlocked")) {
            return null;
        }
        return $this->getProperty("IsDefaultDocumentLibraryBlocked");
    }
    /**
     * @var bool
     */
    public function setIsDefaultDocumentLibraryBlocked($value)
    {
        $this->setProperty("IsDefaultDocumentLibraryBlocked", $value, true);
    }
    /**
     * @return bool
     */
    public function getIsPeopleListPublic()
    {
        if (!$this->isPropertyAvailable("IsPeopleListPublic")) {
            return null;
        }
        return $this->getProperty("IsPeopleListPublic");
    }
    /**
     * @var bool
     */
    public function setIsPeopleListPublic($value)
    {
        $this->setProperty("IsPeopleListPublic", $value, true);
    }
    /**
     * @return bool
     */
    public function getIsPrivacySettingOn()
    {
        if (!$this->isPropertyAvailable("IsPrivacySettingOn")) {
            return null;
        }
        return $this->getProperty("IsPrivacySettingOn");
    }
    /**
     * @var bool
     */
    public function setIsPrivacySettingOn($value)
    {
        $this->setProperty("IsPrivacySettingOn", $value, true);
    }
    /**
     * @return bool
     */
    public function getIsSelf()
    {
        if (!$this->isPropertyAvailable("IsSelf")) {
            return null;
        }
        return $this->getProperty("IsSelf");
    }
    /**
     * @var bool
     */
    public function setIsSelf($value)
    {
        $this->setProperty("IsSelf", $value, true);
    }
    /**
     * @return string
     */
    public function getJobTitle()
    {
        if (!$this->isPropertyAvailable("JobTitle")) {
            return null;
        }
        return $this->getProperty("JobTitle");
    }
    /**
     * @var string
     */
    public function setJobTitle($value)
    {
        $this->setProperty("JobTitle", $value, true);
    }
    /**
     * @return integer
     */
    public function getMySiteFirstRunExperience()
    {
        if (!$this->isPropertyAvailable("MySiteFirstRunExperience")) {
            return null;
        }
        return $this->getProperty("MySiteFirstRunExperience");
    }
    /**
     * @var integer
     */
    public function setMySiteFirstRunExperience($value)
    {
        $this->setProperty("MySiteFirstRunExperience", $value, true);
    }
    /**
     * @return string
     */
    public function getMySiteHostUrl()
    {
        if (!$this->isPropertyAvailable("MySiteHostUrl")) {
            return null;
        }
        return $this->getProperty("MySiteHostUrl");
    }
    /**
     * @var string
     */
    public function setMySiteHostUrl($value)
    {
        $this->setProperty("MySiteHostUrl", $value, true);
    }
    /**
     * @return integer
     */
    public function getO15FirstRunExperience()
    {
        if (!$this->isPropertyAvailable("O15FirstRunExperience")) {
            return null;
        }
        return $this->getProperty("O15FirstRunExperience");
    }
    /**
     * @var integer
     */
    public function setO15FirstRunExperience($value)
    {
        $this->setProperty("O15FirstRunExperience", $value, true);
    }
    /**
     * @return integer
     */
    public function getPersonalSiteCapabilities()
    {
        if (!$this->isPropertyAvailable("PersonalSiteCapabilities")) {
            return null;
        }
        return $this->getProperty("PersonalSiteCapabilities");
    }
    /**
     * @var integer
     */
    public function setPersonalSiteCapabilities($value)
    {
        $this->setProperty("PersonalSiteCapabilities", $value, true);
    }
    /**
     * @return string
     */
    public function getPersonalSiteFirstCreationError()
    {
        if (!$this->isPropertyAvailable("PersonalSiteFirstCreationError")) {
            return null;
        }
        return $this->getProperty("PersonalSiteFirstCreationError");
    }
    /**
     * @var string
     */
    public function setPersonalSiteFirstCreationError($value)
    {
        $this->setProperty("PersonalSiteFirstCreationError", $value, true);
    }
    /**
     * @return string
     */
    public function getPersonalSiteFirstCreationTime()
    {
        if (!$this->isPropertyAvailable("PersonalSiteFirstCreationTime")) {
            return null;
        }
        return $this->getProperty("PersonalSiteFirstCreationTime");
    }
    /**
     * @var string
     */
    public function setPersonalSiteFirstCreationTime($value)
    {
        $this->setProperty("PersonalSiteFirstCreationTime", $value, true);
    }
    /**
     * @return integer
     */
    public function getPersonalSiteInstantiationState()
    {
        if (!$this->isPropertyAvailable("PersonalSiteInstantiationState")) {
            return null;
        }
        return $this->getProperty("PersonalSiteInstantiationState");
    }
    /**
     * @var integer
     */
    public function setPersonalSiteInstantiationState($value)
    {
        $this->setProperty("PersonalSiteInstantiationState", $value, true);
    }
    /**
     * @return string
     */
    public function getPersonalSiteLastCreationTime()
    {
        if (!$this->isPropertyAvailable("PersonalSiteLastCreationTime")) {
            return null;
        }
        return $this->getProperty("PersonalSiteLastCreationTime");
    }
    /**
     * @var string
     */
    public function setPersonalSiteLastCreationTime($value)
    {
        $this->setProperty("PersonalSiteLastCreationTime", $value, true);
    }
    /**
     * @return integer
     */
    public function getPersonalSiteNumberOfRetries()
    {
        if (!$this->isPropertyAvailable("PersonalSiteNumberOfRetries")) {
            return null;
        }
        return $this->getProperty("PersonalSiteNumberOfRetries");
    }
    /**
     * @var integer
     */
    public function setPersonalSiteNumberOfRetries($value)
    {
        $this->setProperty("PersonalSiteNumberOfRetries", $value, true);
    }
    /**
     * @return bool
     */
    public function getPictureImportEnabled()
    {
        if (!$this->isPropertyAvailable("PictureImportEnabled")) {
            return null;
        }
        return $this->getProperty("PictureImportEnabled");
    }
    /**
     * @var bool
     */
    public function setPictureImportEnabled($value)
    {
        $this->setProperty("PictureImportEnabled", $value, true);
    }
    /**
     * @return string
     */
    public function getPictureUrl()
    {
        if (!$this->isPropertyAvailable("PictureUrl")) {
            return null;
        }
        return $this->getProperty("PictureUrl");
    }
    /**
     * @var string
     */
    public function setPictureUrl($value)
    {
        $this->setProperty("PictureUrl", $value, true);
    }
    /**
     * @return string
     */
    public function getPublicUrl()
    {
        if (!$this->isPropertyAvailable("PublicUrl")) {
            return null;
        }
        return $this->getProperty("PublicUrl");
    }
    /**
     * @var string
     */
    public function setPublicUrl($value)
    {
        $this->setProperty("PublicUrl", $value, true);
    }
    /**
     * @return string
     */
    public function getSipAddress()
    {
        if (!$this->isPropertyAvailable("SipAddress")) {
            return null;
        }
        return $this->getProperty("SipAddress");
    }
    /**
     * @var string
     */
    public function setSipAddress($value)
    {
        $this->setProperty("SipAddress", $value, true);
    }
    /**
     * @return string
     */
    public function getUrlToCreatePersonalSite()
    {
        if (!$this->isPropertyAvailable("UrlToCreatePersonalSite")) {
            return null;
        }
        return $this->getProperty("UrlToCreatePersonalSite");
    }
    /**
     * @var string
     */
    public function setUrlToCreatePersonalSite($value)
    {
        $this->setProperty("UrlToCreatePersonalSite", $value, true);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit