>FromYourCode();

Source code quote in PHP212

 15 June, 2014 at 07:27
// Who said that PrestaShop is easy to understand ?? Here are some snippets from some files.

$this->isLogged = (bool)((int)(self::$cookie->id_customer) AND Customer::customerIdExistsStatic((int)(self::$cookie->id_customer)));

// WTF ! controllers/cartController.php
(int)$producToAdd->out_of_stock == 2 ? !(int)Configuration::get(‘PS_ORDER_OUT_OF_STOCK’) : !(int)$producToAdd->out_of_stock;

// Why int cast before abs() ??? controllers/cartController.php
$qty = (int)(abs(Tools::getValue(‘qty’, 1)))

// Double cast ! modules/productcomments/productcomments-ajax.php
(bool)((int)Tools::getValue(‘value’));

Check similar quotes

Share this quote