Child pages
  • Using the Context Object

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Static shortcuts in FrontControllersubclasses are deprecated:

    Code Block
    languagephp
    titlePrestaShop 1.4 code
    $id_cart = self::cart->id;
    

    ...is to be replaced with...

    Code Block
    languagephp
    titlePrestaShop 1.5 code
    $id_cart = $this->context->cart->id;
    
  • Do not recreate an object that already exists:

    Code Block
    languagephp
    titlePrestaShop 1.4 code
    $language = new Language($cookie->id_lang);
    
    $iso_code = $language->iso_code;
    

    ...is to be replaced with...

    Code Block
    languagephp
    titlePrestaShop 1.5 code
    $iso_code = $this->context->language->iso_code;
    

...