thetesm Posted March 30, 2013 Share Posted March 30, 2013 Bonjour, j'arrive à afficher un objet flash sur mon site. Je voudrais savoir comment coder l'affichage de l'objet aux conditions suivantes : -> le client concerné est connecté sur le site marchand -> le client et le mot de passe correspondent -> le client a commandé un des produits impliquant l'affichage -> le client a payé ce produit Merci de m'aider! Je nage en eau profonde Link to comment Share on other sites More sharing options...
thetesm Posted March 31, 2013 Author Share Posted March 31, 2013 (edited) Apparemment la gestion des clients connectés se passe dans les cookies. J'ai rajouté ces lignes à ma nouvelle page php. Mais je ne veux pas créer un nouveau cookie mais utiliser les cookies déjà créés. Je ne sais pas où et comment les récupérer? include_once('./config/config.inc.php'); include_once('./config/settings.inc.php'); include_once('./classes/Cookie.php'); $cookie = new Cookie('ps'); Aussi que signifie ps dans ces codes? Edited March 31, 2013 by thetesm (see edit history) Link to comment Share on other sites More sharing options...
thetesm Posted March 31, 2013 Author Share Posted March 31, 2013 J'ai trouvé une réponse partielle à mon problème dans order-detail.tpl. if $product.download_hash && $invoice && $product.display_filename != '' && $product.product_quantity_refunded == 0 && $product.product_quantity_return == 0} {if isset($is_guest) && $is_guest} <a href="{$link->getPageLink('get-file', true, NULL, "key={$product.filename|escape:'htmlall':'UTF-8'}-{$product.download_hash|escape:'htmlall':'UTF-8'}&id_order={$order->id}&secure_key={$order->secure_key}")}" title="{l s='download this product'}"> {else} <a href="{$link->getPageLink('get-file', true, NULL, "key={$product.filename|escape:'htmlall':'UTF-8'}-{$product.download_hash|escape:'htmlall':'UTF-8'}")}" title="{l s='download this product'}"> {/if} <img src="{$img_dir}icon/download_product.gif" class="icon" alt="{l s='Download product'}" /> </a> <a href="{$link->getPageLink('get-file', true, NULL, "key={$product.filename|escape:'htmlall':'UTF-8'}-{$product.download_hash|escape:'htmlall':'UTF-8'}")}" title="{l s='download this product'}"> <object type="application/x-shockwave-flash" data="Clock.swf" width="200" height="100"> <param name="movie" value="Clock.swf" /> <param name="wmode" value="transparent" /> <param name="FlashVars" value="config=config_multi.txt" /> <embed src="Clock.swf" width="200" height="100" wmode="transparent" ></embed> <p>musique</p> </object> </a> Je voudrais que le else de la condition s'applique aussi à mon flash. Quelqu'un a une idée? Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now