blob: 27323fd01fa742290b8ba3689c3c2d58522d3caf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
interface FileUploadHook
{
/**
* If this method returns a URL the new page will be shown right after adding a file
* into a filesystem.
*
* @param $file_ref
* @return null|string: URL or null if no page should be added
*/
public function getAdditionalUploadWizardPage($file_ref);
}
|