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


Viewing file:     Coordinate.php (14.58 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.
 */

/**
 * Service definition for Coordinate (v1).
 *
 * <p>
 * Lets you view and manage jobs in a Coordinate team.</p>
 *
 * <p>
 * For more information about this service, see the API
 * <a href="https://developers.google.com/coordinate/" target="_blank">Documentation</a>
 * </p>
 *
 * @author Google, Inc.
 */
class Google_Service_Coordinate extends Google_Service
{
  
/** View and manage your Google Maps Coordinate jobs. */
  
const COORDINATE =
      
"https://www.googleapis.com/auth/coordinate";
  
/** View your Google Coordinate jobs. */
  
const COORDINATE_READONLY =
      
"https://www.googleapis.com/auth/coordinate.readonly";

  public 
$customFieldDef;
  public 
$jobs;
  public 
$location;
  public 
$schedule;
  public 
$team;
  public 
$worker;
  
  
/**
   * Constructs the internal representation of the Coordinate service.
   *
   * @param Google_Client $client
   */
  
public function __construct(Google_Client $client)
  {
    
parent::__construct($client);
    
$this->rootUrl 'https://www.googleapis.com/';
    
$this->servicePath 'coordinate/v1/';
    
$this->version 'v1';
    
$this->serviceName 'coordinate';

    
$this->customFieldDef = new Google_Service_Coordinate_Resource_CustomFieldDef(
        
$this,
        
$this->serviceName,
        
'customFieldDef',
        array(
          
'methods' => array(
            
'list' => array(
              
'path' => 'teams/{teamId}/custom_fields',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
          )
        )
    );
    
$this->jobs = new Google_Service_Coordinate_Resource_Jobs(
        
$this,
        
$this->serviceName,
        
'jobs',
        array(
          
'methods' => array(
            
'get' => array(
              
'path' => 'teams/{teamId}/jobs/{jobId}',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'jobId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'insert' => array(
              
'path' => 'teams/{teamId}/jobs',
              
'httpMethod' => 'POST',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'address' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'lat' => array(
                  
'location' => 'query',
                  
'type' => 'number',
                  
'required' => true,
                ),
                
'lng' => array(
                  
'location' => 'query',
                  
'type' => 'number',
                  
'required' => true,
                ),
                
'title' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'assignee' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'customField' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                  
'repeated' => true,
                ),
                
'customerName' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'customerPhoneNumber' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'note' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'list' => array(
              
'path' => 'teams/{teamId}/jobs',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'maxResults' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'minModifiedTimestampMs' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'omitJobChanges' => array(
                  
'location' => 'query',
                  
'type' => 'boolean',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'patch' => array(
              
'path' => 'teams/{teamId}/jobs/{jobId}',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'jobId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'address' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'assignee' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'customField' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                  
'repeated' => true,
                ),
                
'customerName' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'customerPhoneNumber' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'lat' => array(
                  
'location' => 'query',
                  
'type' => 'number',
                ),
                
'lng' => array(
                  
'location' => 'query',
                  
'type' => 'number',
                ),
                
'note' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'progress' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'title' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'update' => array(
              
'path' => 'teams/{teamId}/jobs/{jobId}',
              
'httpMethod' => 'PUT',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'jobId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'address' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'assignee' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'customField' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                  
'repeated' => true,
                ),
                
'customerName' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'customerPhoneNumber' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'lat' => array(
                  
'location' => 'query',
                  
'type' => 'number',
                ),
                
'lng' => array(
                  
'location' => 'query',
                  
'type' => 'number',
                ),
                
'note' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'progress' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'title' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->location = new Google_Service_Coordinate_Resource_Location(
        
$this,
        
$this->serviceName,
        
'location',
        array(
          
'methods' => array(
            
'list' => array(
              
'path' => 'teams/{teamId}/workers/{workerEmail}/locations',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'workerEmail' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'startTimestampMs' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'maxResults' => array(
                  
'location' => 'query',
                  
'type' => 'integer',
                ),
                
'pageToken' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->schedule = new Google_Service_Coordinate_Resource_Schedule(
        
$this,
        
$this->serviceName,
        
'schedule',
        array(
          
'methods' => array(
            
'get' => array(
              
'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'jobId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
'patch' => array(
              
'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
              
'httpMethod' => 'PATCH',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'jobId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'allDay' => array(
                  
'location' => 'query',
                  
'type' => 'boolean',
                ),
                
'duration' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'endTime' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'startTime' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
'update' => array(
              
'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
              
'httpMethod' => 'PUT',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'jobId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
                
'allDay' => array(
                  
'location' => 'query',
                  
'type' => 'boolean',
                ),
                
'duration' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'endTime' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
                
'startTime' => array(
                  
'location' => 'query',
                  
'type' => 'string',
                ),
              ),
            ),
          )
        )
    );
    
$this->team = new Google_Service_Coordinate_Resource_Team(
        
$this,
        
$this->serviceName,
        
'team',
        array(
          
'methods' => array(
            
'list' => array(
              
'path' => 'teams',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'admin' => array(
                  
'location' => 'query',
                  
'type' => 'boolean',
                ),
                
'dispatcher' => array(
                  
'location' => 'query',
                  
'type' => 'boolean',
                ),
                
'worker' => array(
                  
'location' => 'query',
                  
'type' => 'boolean',
                ),
              ),
            ),
          )
        )
    );
    
$this->worker = new Google_Service_Coordinate_Resource_Worker(
        
$this,
        
$this->serviceName,
        
'worker',
        array(
          
'methods' => array(
            
'list' => array(
              
'path' => 'teams/{teamId}/workers',
              
'httpMethod' => 'GET',
              
'parameters' => array(
                
'teamId' => array(
                  
'location' => 'path',
                  
'type' => 'string',
                  
'required' => true,
                ),
              ),
            ),
          )
        )
    );
  }
}

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