Property | Type | Description | |
---|---|---|---|
$bArrayOutput | Return responses enclosed in array | ||
$iId | The ID of the movie. | ||
$isReady | Is the content ready? | ||
$sNotFound | The string returned, if nothing is found. | ||
$sSeparator | Char that separates multiple entries. | ||
$sUrl | The URL to the movie. |
Method | Description | |
---|---|---|
__construct ( string $sSearch, null $iCache = null, string $sSearchFor = 'all' ) | ||
getAka ( ) : string | ||
getAkas ( ) : string | Returns all local names | |
getAll ( ) : array | ||
getAspectRatio ( ) : string | ||
getAwards ( ) : string | ||
getCast ( integer $iLimit, boolean $bMore = true ) : string | ||
getCastAndCharacter ( integer $iLimit, boolean $bMore = true ) : string | ||
getCastAndCharacterAsUrl ( integer $iLimit, boolean $bMore = true, string $sTarget = '' ) : string | ||
getCastAsUrl ( integer $iLimit, boolean $bMore = true, string $sTarget = '' ) : string | ||
getCertification ( ) : string | ||
getColor ( ) : string | ||
getCompany ( ) : string | ||
getCompanyAsUrl ( string $sTarget = '' ) : string | ||
getCountry ( ) : string | ||
getCountryAsUrl ( string $sTarget = '' ) : string | ||
getCreator ( ) : string | ||
getCreatorAsUrl ( string $sTarget = '' ) : string | ||
getDirector ( ) : string | ||
getDirectorAsUrl ( string $sTarget = '' ) : string | ||
getGenre ( ) : string | ||
getGenreAsUrl ( string $sTarget = '' ) : string | ||
getLanguage ( ) : string | ||
getLanguageAsUrl ( string $sTarget = '' ) : string | ||
getLocation ( ) : string | ||
getLocationAsUrl ( string $sTarget = '' ) : string | ||
getMpaa ( ) : string | ||
getPlot ( integer $iLimit ) : string | ||
getPlotKeywords ( ) : string | ||
getPoster ( string $sSize = 'small', boolean $bDownload = false ) : boolean | string | ||
getRating ( ) : string | ||
getReleaseDate ( ) : string | ||
getRuntime ( ) : string | ||
getSeasons ( ) : string | ||
getSeasonsAsUrl ( string $sTarget = '' ) : string | ||
getSoundMix ( ) : string | ||
getTagline ( ) : string | ||
getTitle ( boolean $bForceLocal = false ) : string | ||
getTrailerAsUrl ( boolean $bEmbed = false ) : string | ||
getUrl ( ) : string | ||
getUserReview ( ) : string | ||
getVotes ( ) : string | ||
getWriter ( ) : string | ||
getWriterAsUrl ( string $sTarget = '' ) : string | ||
getYear ( ) : string | ||
isReleased ( ) : true | Release date doesn't contain all the information we need to create a media and we need this function that checks if users can vote target media (if can, it's released). |
Method | Description | |
---|---|---|
fetchUrl ( string $sSearch ) : boolean |
public getAspectRatio ( ) : string | ||
return | string | “Aspect Ratio” or $sNotFound. |
public getCastAndCharacterAsUrl ( integer $iLimit, boolean $bMore = true, string $sTarget = '' ) : string | ||
$iLimit | integer | How many cast members should be returned? |
$bMore | boolean | Add … if there are more cast members than printed. |
$sTarget | string | Add a target to the links? |
return | string | A list with linked cast members and their character or $sNotFound. |
public getCastAsUrl ( integer $iLimit, boolean $bMore = true, string $sTarget = '' ) : string | ||
$iLimit | integer | How many cast members should be returned? |
$bMore | boolean | Add … if there are more cast members than printed. |
$sTarget | string | Add a target to the links? |
return | string | A list with linked cast members or $sNotFound. |
public getCertification ( ) : string | ||
return | string | The certification of the movie or $sNotFound. |
public getCompany ( ) : string | ||
return | string | The company producing the movie or $sNotFound. |
public getCompanyAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | The linked company producing the movie or $sNotFound. |
public getCountry ( ) : string | ||
return | string | A list with countries or $sNotFound. |
public getCountryAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with linked countries or $sNotFound. |
public getCreator ( ) : string | ||
return | string | A list with the creators or $sNotFound. |
public getCreatorAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with the linked creators or $sNotFound. |
public getDirector ( ) : string | ||
return | string | A list with the directors or $sNotFound. |
public getDirectorAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with the linked directors or $sNotFound. |
public getGenreAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with the linked genres or $sNotFound. |
public getLanguage ( ) : string | ||
return | string | A list with the languages or $sNotFound. |
public getLanguageAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with the linked languages or $sNotFound. |
public getLocation ( ) : string | ||
return | string | A list with the location or $sNotFound. |
public getLocationAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with the linked location or $sNotFound. |
public getPlotKeywords ( ) : string | ||
return | string | A list with the plot keywords or $sNotFound. |
public getReleaseDate ( ) : string | ||
return | string | The release date of the movie or $sNotFound. |
public getRuntime ( ) : string | ||
return | string | The runtime of the movie or $sNotFound. |
public getSeasons ( ) : string | ||
return | string | A list with the seasons or $sNotFound. |
public getSeasonsAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with the linked seasons or $sNotFound. |
public getSoundMix ( ) : string | ||
return | string | The sound mix of the movie or $sNotFound. |
public getTagline ( ) : string | ||
return | string | The tagline of the movie or $sNotFound. |
public getTrailerAsUrl ( boolean $bEmbed = false ) : string | ||
$bEmbed | boolean | Link to player directly? |
return | string | The URL to the trailer of the movie or $sNotFound. |
public getUserReview ( ) : string | ||
return | string | The user review of the movie or $sNotFound. |
public getWriterAsUrl ( string $sTarget = '' ) : string | ||
$sTarget | string | Add a target to the links? |
return | string | A list with the linked writers or $sNotFound. |
public isReleased ( ) : true | ||
return | true | If the media is released |
public static $sNotFound |