function propTypeDateAddedSql($prop, $role) {
if($role=="sql") {
$sql = array();
$sql['select'] = "DATE_FORMAT(movies.DateAdded, '$GLOBALS[strDefaultDateFormat]') AS `$prop[Name]`";
return($sql);
} else if($role=="order") {
return("movies.DateAdded");
}
}
function propTypeClicksSql($prop, $role) {
if($role=="sql") {
$sql = array();
$sql['select'] = "movies.DownloadCount AS `$prop[Name]`";
return($sql);
} else if($role=="order") {
return("`$prop[Name]`");
}
}
function propTypeUserAddedSql($prop, $role) {
global $CFG;
if($role=="sql") {
$sql = array();
$sql['select'] = "users.name AS `$prop[Name]`";
$sql['left join']["$CFG[Prefix]users AS users"] = "users.ID=movies.UserAddedID";
return($sql);
} else if($role=="order") {
return("`$prop[Name]`");
}
}
function propTypeCommentsSql($prop, $role) {
global $CFG;
if($role=="sql") {
$sql['select'] = "COUNT(comment.ID) AS `$prop[Name]`";
$sql['left join']["$CFG[Prefix]comment AS comment"] = "comment.MovieID=movies.MovieID";
$sql['group'][] = "movies.MovieID";
return($sql);
} else if($role=="order") {
return("`$prop[Name]`");
}
}
if(file_exists('localproptypes.php')) {
include('localproptypes.php');
}
?>
Wilbur
Title
Wilbur
Originaltitle:
Wilbur Wants to Kill Himself
Regie:
Lone Scherfig
Darsteller:
Jamie Sives, Adrian Rawlins, Shirley Henderson
Erscheinungsjahr:
2002
Land:
Dänemark
Stichwort:
Depression, Selbstmord, Krebs
Release:
08.11.2002
Handlung
Harbour und sein jüngerer Bruder Wilbur betreiben mit wenig Profit eine Second-Hand-Buchhandlung in Glasgow. Wilbur begeht aus Lebensüberdruss mehrere Selbstmordversuche. , vor denen ihn meist im letzten Moment der ältere Bruder bewahrt. Eine alleinerziehende Mutter nimmt sich des Bruderpaares an und heiratet Harbour. Als dieser an Krebs stirbt, wird sie endgültig zur Lebensstütze für Wilbur.
/**********************************************************************************************
YOU ARE NOT ALLOWED TO REMOVE THIS COPYRIGHT-Note!!!!!!
You didn't pay anything for this script, so you could at least
leave this Copyright-Notice here, it is only one short line at the bottom... thx :D
***********************************************************************************************/
?>
Copyright © 1998-2006 by Nikotto
modified by xiah