PHP Interface Plank\Mediable\SourceAdapters\SourceAdapterInterface

Defines methods needed by the MediaUploader
Author: Sean Fraser ([email protected])
Afficher le fichier Open project: plank/laravel-mediable

Méthodes publiques

Méthode Description
contents ( ) : string Get the body of the file.
extension ( ) : string Get the extension of the file.
filename ( ) : string Get the name of the file.
getSource ( ) : mixed Get the underlying source.
mimeType ( ) : string Get the MIME type of the file.
path ( ) : string Get the absolute path to the file.
size ( ) : integer Determine the size of the file.
valid ( ) : boolean Check if the file can be transfered.

Method Details

contents() public méthode

Get the body of the file.
public contents ( ) : string
Résultat string

extension() public méthode

Get the extension of the file.
public extension ( ) : string
Résultat string

filename() public méthode

Get the name of the file.
public filename ( ) : string
Résultat string

getSource() public méthode

Get the underlying source.
public getSource ( ) : mixed
Résultat mixed

mimeType() public méthode

Get the MIME type of the file.
public mimeType ( ) : string
Résultat string

path() public méthode

Get the absolute path to the file.
public path ( ) : string
Résultat string

size() public méthode

Determine the size of the file.
public size ( ) : integer
Résultat integer

valid() public méthode

Check if the file can be transfered.
public valid ( ) : boolean
Résultat boolean