Jump to content

[DEV] get-file.php


Recommended Posts

Salut les copains codeurs...

 

Dites, je bosse sur un truc là en 1.4 et je "tripotte" le fichier get-file.php. En tout début de fichier, je trouve un un test if / then / else avec en premier test ca :

 

if ($cookie->isLoggedBack() AND Tools::getValue('file'))

 

J'ai eu beau testé de différente manière, je passe jamais dedans. La question c'est : dans quel cas je passe dans mon test ? ou Qui m'envoie un lien avec une variable URL $file ?

Link to comment
Share on other sites

Les produits virtuels, quand on reçoit un email...

 

Tu peux voir cela ici:

public function getTextLink($admin=true, $hash=false)
{
 $key = $this->physically_filename . '-' . ($hash ? $hash : 'orderdetail');
 $link = ($admin) ? './get-file-admin.php?' : Tools::getHttpHost(true, true).__PS_BASE_URI__.'get-file.php?';
 $link .= ($admin) ? 'file='.$this->physically_filename : 'key='.$key;
 return $link;
}

 

Situé dans /classes/ProductDownload.php ;)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...