-
Notifications
You must be signed in to change notification settings - Fork 0
/
flysystem_gcs_cors.module
36 lines (31 loc) · 1.1 KB
/
flysystem_gcs_cors.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* @file
* Contains flysystem_gcs_cors.module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function flysystem_gcs_cors_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the flysystem_gcs_cors module.
case 'help.page.flysystem_gcs_cors':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allow directly uploading to Google Cloud Storage from the web browser') . '</p>';
return $output;
default:
}
}
/**
* Implements hook_field_info_alter().
*/
function flysystem_gcs_cors_field_info_alter(array &$info) {
// Need to override the file and image fields
// to allow setting uploads larger than what PHP allows
// since we're avoiding PHP altogether and uploading directly to GCS
// do not need to be constrained by PHP's memory limits.
$info['file']['class'] = '\Drupal\flysystem_gcs_cors\Plugin\Field\FieldType\FlysystemGcsCorsFile';
$info['image']['class'] = '\Drupal\flysystem_gcs_cors\Plugin\Field\FieldType\FlysystemGcsCorsImage';
}