mirror of
https://github.com/HaschekSolutions/pictshare.git
synced 2025-11-13 11:46:20 +00:00
11 lines
334 B
PHP
11 lines
334 B
PHP
<?php
|
|
|
|
class UrlController implements ContentController
|
|
{
|
|
public const ctype = 'static';
|
|
|
|
//returns all extensions registered by this type of content
|
|
public function getRegisteredExtensions(){return array('url');}
|
|
public function handleHash($hash,$url){}
|
|
public function handleUpload($tmpfile,$hash=false){}
|
|
} |