Search

Help

Page 2 of 59. Showing 587 results (0.015 seconds)

  1. Diving into PrestaShop Core development

    ). associateTo(integer|array $id_shops) Associate an item to its context. delete() Delete current object from database. deleteImage(mixed $force_delete = false … . SupplierController.php Used by supplier.php to get suppliers. Overriding a controller Thanks to object inheritance, you can change a controller's behaviors, or add new ones
    PrestaShop 1.5Aug 25, 2014
  2. Displaying content on the front office

    () { $this->context->controller->addCSS($this->_path.'css/mymodule.css', 'all'); } We are using the Context ($this->context) to change a Smarty variable: Smarty's assign … . id_currency_cookie ID of the current currency. currency Currency object (currently used currency). cookie User cookie. languages The various available languages. logged
    PrestaShop 1.6Mar 16, 2015
  3. Displaying content on the front office -

    ); } public function hookDisplayHeader() { $this->context->controller->addCSS($this->_path.'css/mymodule.css', 'all'); } We are using the Context ($this->context … The various available currencies. id_currency_cookie ID of the current currency. currency Currency object (currently used currency). cookie User cookie. languages
    PrestaShop 1.6Jul 01, 2016
  4. Displaying content on the front office

    $this->hookDisplayLeftColumn($params); } public function hookDisplayHeader() { $this->context->controller->addCSS($this->_path.'css/mymodule.css', 'all'); } We are using … of the current currency. currency Currency object (currently used currency). cookie User cookie. languages The various available languages. logged Indicates whether
    PrestaShop 1.7Sep 20, 2017
  5. Using jQuery and Ajax

    : https://developer.mozilla.org/en/docs/AJAX https://developer.mozilla.org/en/docs/AJAX JavaScript Object Notation is the most used format when transferring data using the Ajax … Table of contents Using jQuery and Ajax About jQuery jQuery is a solid JavaScript library. Among its many advantages: Works as expected with numerous web
    PrestaShop 1.5Mar 20, 2013
  6. Using jQuery and Ajax

    https://developer.mozilla.org/en/docs/AJAX JavaScript Object Notation is the most used format when transferring data using the Ajax technique, for two main reasons … Table of contents Using jQuery and Ajax About jQuery jQuery is a solid JavaScript library. Among its many advantages: Works as expected with numerous web
    PrestaShop 1.6Sep 08, 2014
  7. Accessing the database

    (integer|array $id_shops) Associate an item to its context. delete() Delete current object from database. deleteImage(mixed $force_delete = false) Delete images … contains the position of each category depending on the store. There is also a couple of standard practices for data rows within a table: Use the id_lang field
    PrestaShop 1.6May 05, 2014
  8. Accessing the database-

    have to use the ObjectModel class. This is the main object of PrestaShop's object model. It can be overridden... with precaution. It is an Active Record kind … or update). associateTo(integer|array $id_shops) Associate an item to its context. delete() Delete current object from database. deleteImage(mixed $force_delete
    PrestaShop 1.6Jul 01, 2016
  9. Cheat-sheet - Concepts outlined in this tutorial

    to the list of shops as well as their associated identifiers. Key Value Description id_shop Shop ID Define the shop to be used as a context for the web service. id_group_shop Group shop ID Define the group shop to be used as a context for the web service.
    PrestaShop 1.6Jul 25, 2014
  10. Webservice one-page documentation

    that needs to use your store's webservice. Then, you must create an instance of the PrestaShopWebservice object, which takes 3 parameters in its constructor … https://github.com/PrestaShop/PrestaShop-webservice-lib/tree/master/examples Working with your data As shown above, you have to instantiate the PrestaShopWebservice object in order to use its methods: add(), get(), edit
    PrestaShop 1.5Jan 07, 2014