!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/Vault/Resource/   drwxr-xr-x
Free 13.2 GB of 57.97 GB (22.77%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Matters.php (7.8 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 "matters" collection of methods.
 * Typical usage is:
 *  <code>
 *   $vaultService = new Google_Service_Vault(...);
 *   $matters = $vaultService->matters;
 *  </code>
 */
class Google_Service_Vault_Resource_Matters extends Google_Service_Resource
{
  
/**
   * Adds an account as a matter collaborator. (matters.addPermissions)
   *
   * @param string $matterId The matter ID.
   * @param Google_Service_Vault_AddMatterPermissionsRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_MatterPermission
   */
  
public function addPermissions($matterIdGoogle_Service_Vault_AddMatterPermissionsRequest $postBody$optParams = array())
  {
    
$params = array('matterId' => $matterId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('addPermissions', array($params), "Google_Service_Vault_MatterPermission");
  }
  
/**
   * Closes the specified matter. Returns matter with updated state.
   * (matters.close)
   *
   * @param string $matterId The matter ID.
   * @param Google_Service_Vault_CloseMatterRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_CloseMatterResponse
   */
  
public function close($matterIdGoogle_Service_Vault_CloseMatterRequest $postBody$optParams = array())
  {
    
$params = array('matterId' => $matterId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('close', array($params), "Google_Service_Vault_CloseMatterResponse");
  }
  
/**
   * Counts the artifacts within the context of a matter and returns a detailed
   * breakdown of metrics. (matters.count)
   *
   * @param string $matterId The matter ID.
   * @param Google_Service_Vault_CountArtifactsRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_Operation
   */
  
public function count($matterIdGoogle_Service_Vault_CountArtifactsRequest $postBody$optParams = array())
  {
    
$params = array('matterId' => $matterId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('count', array($params), "Google_Service_Vault_Operation");
  }
  
/**
   * Creates a new matter with the given name and description. The initial state
   * is open, and the owner is the method caller. Returns the created matter with
   * default view. (matters.create)
   *
   * @param Google_Service_Vault_Matter $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_Matter
   */
  
public function create(Google_Service_Vault_Matter $postBody$optParams = array())
  {
    
$params = array('postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('create', array($params), "Google_Service_Vault_Matter");
  }
  
/**
   * Deletes the specified matter. Returns matter with updated state.
   * (matters.delete)
   *
   * @param string $matterId The matter ID
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_Matter
   */
  
public function delete($matterId$optParams = array())
  {
    
$params = array('matterId' => $matterId);
    
$params array_merge($params$optParams);
    return 
$this->call('delete', array($params), "Google_Service_Vault_Matter");
  }
  
/**
   * Gets the specified matter. (matters.get)
   *
   * @param string $matterId The matter ID.
   * @param array $optParams Optional parameters.
   *
   * @opt_param string view Specifies which parts of the Matter to return in the
   * response.
   * @return Google_Service_Vault_Matter
   */
  
public function get($matterId$optParams = array())
  {
    
$params = array('matterId' => $matterId);
    
$params array_merge($params$optParams);
    return 
$this->call('get', array($params), "Google_Service_Vault_Matter");
  }
  
/**
   * Lists matters the user has access to. (matters.listMatters)
   *
   * @param array $optParams Optional parameters.
   *
   * @opt_param int pageSize The number of matters to return in the response.
   * Default and maximum are 100.
   * @opt_param string pageToken The pagination token as returned in the response.
   * @opt_param string state If set, list only matters with that specific state.
   * The default is listing matters of all states.
   * @opt_param string view Specifies which parts of the matter to return in
   * response.
   * @return Google_Service_Vault_ListMattersResponse
   */
  
public function listMatters($optParams = array())
  {
    
$params = array();
    
$params array_merge($params$optParams);
    return 
$this->call('list', array($params), "Google_Service_Vault_ListMattersResponse");
  }
  
/**
   * Removes an account as a matter collaborator. (matters.removePermissions)
   *
   * @param string $matterId The matter ID.
   * @param Google_Service_Vault_RemoveMatterPermissionsRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_VaultEmpty
   */
  
public function removePermissions($matterIdGoogle_Service_Vault_RemoveMatterPermissionsRequest $postBody$optParams = array())
  {
    
$params = array('matterId' => $matterId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('removePermissions', array($params), "Google_Service_Vault_VaultEmpty");
  }
  
/**
   * Reopens the specified matter. Returns matter with updated state.
   * (matters.reopen)
   *
   * @param string $matterId The matter ID.
   * @param Google_Service_Vault_ReopenMatterRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_ReopenMatterResponse
   */
  
public function reopen($matterIdGoogle_Service_Vault_ReopenMatterRequest $postBody$optParams = array())
  {
    
$params = array('matterId' => $matterId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('reopen', array($params), "Google_Service_Vault_ReopenMatterResponse");
  }
  
/**
   * Undeletes the specified matter. Returns matter with updated state.
   * (matters.undelete)
   *
   * @param string $matterId The matter ID.
   * @param Google_Service_Vault_UndeleteMatterRequest $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_Matter
   */
  
public function undelete($matterIdGoogle_Service_Vault_UndeleteMatterRequest $postBody$optParams = array())
  {
    
$params = array('matterId' => $matterId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('undelete', array($params), "Google_Service_Vault_Matter");
  }
  
/**
   * Updates the specified matter. This updates only the name and description of
   * the matter, identified by matter ID. Changes to any other fields are ignored.
   * Returns the default view of the matter. (matters.update)
   *
   * @param string $matterId The matter ID.
   * @param Google_Service_Vault_Matter $postBody
   * @param array $optParams Optional parameters.
   * @return Google_Service_Vault_Matter
   */
  
public function update($matterIdGoogle_Service_Vault_Matter $postBody$optParams = array())
  {
    
$params = array('matterId' => $matterId'postBody' => $postBody);
    
$params array_merge($params$optParams);
    return 
$this->call('update', array($params), "Google_Service_Vault_Matter");
  }
}

:: 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.0057 ]--