12 lines
276 B
PHP
12 lines
276 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace App\Core\Modules;
|
||
|
|
||
|
// Remote Download allow to create a file or to download directly as a thumbnail; same plugins as for upload will validate
|
||
|
// as validation event will be the same as that of upload - same logic
|
||
|
|
||
|
abstract class RemoteAttachmentDownload
|
||
|
{
|
||
|
|
||
|
}
|