| Current Path : /home/jeromecohp/www/plugins/system/yooessentials/modules/api/src/Google/ |
| Current File : /home/jeromecohp/www/plugins/system/yooessentials/modules/api/src/Google/GoogleDriveApi.php |
<?php
/**
* @package Essentials YOOtheme Pro (Freemium) 2.0.19 build 1026.0920
* @author ZOOlanders https://www.zoolanders.com
* @copyright Copyright (C) Joolanders, SL
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL
*/
namespace ZOOlanders\YOOessentials\Api\Google;
class GoogleDriveApi extends AbstractGoogleApi implements GoogleDriveApiInterface
{
protected $apiEndpoint = 'https://www.googleapis.com/drive/v3';
public function files(array $args = []): array
{
return $this->get('files', array_merge($args, ['pageSize' => 50, 'includeItemsFromAllDrives' => 'true', 'supportsAllDrives' => 'true']));
}
}