How To Check Product Status On Smarty?

{if product.status == "hidden"} any idea?

{if $product.status == "H"}
     ...
{/if}

What's the php way? thanks

if($product['status'] == A) { }

i figured it out, Thank you!