!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/google/apiclient-services/src/Google/Service/Gmail/Resource/   drwxr-xr-x
Free 12.98 GB of 57.97 GB (22.39%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     UsersSettings.php (7.47 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

/**
 * The "settings" collection of methods.
 * Typical usage is:
 *  <code>
 *   $gmailService = new Google_Service_Gmail(...);
 *   $settings = $gmailService->settings;
 *  </code>
 */
class Google_Service_Gmail_Resource_UsersSettings extends Google_Service_Resource
{
  
/**
   * Gets the auto-forwarding setting for the specified account.
   * (settings.getAutoForwarding)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_AutoForwarding
   */
  
public function getAutoForwarding($userId$optParams = array())
  {
    
$params = array('userId' => $userId);
    
$params array_merge($params$optParams);
    return 
$this->call('getAutoForwarding', array($params), "Google_Service_Gmail_AutoForwarding");
  }
  
/**
   * Gets IMAP settings. (settings.getImap)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_ImapSettings
   */
  
public function getImap($userId$optParams = array())
  {
    
$params = array('userId' => $userId);
    
$params array_merge($params$optParams);
    return 
$this->call('getImap', array($params), "Google_Service_Gmail_ImapSettings");
  }
  
/**
   * Gets language settings. (settings.getLanguage)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_LanguageSettings
   */
  
public function getLanguage($userId$optParams = array())
  {
    
$params = array('userId' => $userId);
    
$params array_merge($params$optParams);
    return 
$this->call('getLanguage', array($params), "Google_Service_Gmail_LanguageSettings");
  }
  
/**
   * Gets POP settings. (settings.getPop)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_PopSettings
   */
  
public function getPop($userId$optParams = array())
  {
    
$params = array('userId' => $userId);
    
$params array_merge($params$optParams);
    return 
$this->call('getPop', array($params), "Google_Service_Gmail_PopSettings");
  }
  
/**
   * Gets vacation responder settings. (settings.getVacation)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_VacationSettings
   */
  
public function getVacation($userId$optParams = array())
  {
    
$params = array('userId' => $userId);
    
$params array_merge($params$optParams);
    return 
$this->call('getVacation', array($params), "Google_Service_Gmail_VacationSettings");
  }
  
/**
   * Updates the auto-forwarding setting for the specified account. A verified
   * forwarding address must be specified when auto-forwarding is enabled. This
   * method is only available to service account clients that have been delegated
   * domain-wide authority. (settings.updateAutoForwarding)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param Google_Service_Gmail_AutoForwarding $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_AutoForwarding
   */
  
public function updateAutoForwarding($userIdGoogle_Service_Gmail_AutoForwarding $postBody$optParams = array())
  {
    
$params = array('userId' => $userId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('updateAutoForwarding', array($params), "Google_Service_Gmail_AutoForwarding");
  }
  
/**
   * Updates IMAP settings. (settings.updateImap)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param Google_Service_Gmail_ImapSettings $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_ImapSettings
   */
  
public function updateImap($userIdGoogle_Service_Gmail_ImapSettings $postBody$optParams = array())
  {
    
$params = array('userId' => $userId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('updateImap', array($params), "Google_Service_Gmail_ImapSettings");
  }
  
/**
   * Updates language settings. If successful, the return object contains the
   * `displayLanguage` that was saved for the user, which may differ from the
   * value passed into the request. This is because the requested
   * `displayLanguage` may not be directly supported by Gmail but have a close
   * variant that is, and so the variant may be chosen and saved instead.
   * (settings.updateLanguage)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param Google_Service_Gmail_LanguageSettings $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_LanguageSettings
   */
  
public function updateLanguage($userIdGoogle_Service_Gmail_LanguageSettings $postBody$optParams = array())
  {
    
$params = array('userId' => $userId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('updateLanguage', array($params), "Google_Service_Gmail_LanguageSettings");
  }
  
/**
   * Updates POP settings. (settings.updatePop)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param Google_Service_Gmail_PopSettings $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_PopSettings
   */
  
public function updatePop($userIdGoogle_Service_Gmail_PopSettings $postBody$optParams = array())
  {
    
$params = array('userId' => $userId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('updatePop', array($params), "Google_Service_Gmail_PopSettings");
  }
  
/**
   * Updates vacation responder settings. (settings.updateVacation)
   *
   * @param string $userId User's email address. The special value "me" can be
   * used to indicate the authenticated user.
   * @param Google_Service_Gmail_VacationSettings $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Gmail_VacationSettings
   */
  
public function updateVacation($userIdGoogle_Service_Gmail_VacationSettings $postBody$optParams = array())
  {
    
$params = array('userId' => $userId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('updateVacation', array($params), "Google_Service_Gmail_VacationSettings");
  }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0058 ]--