https://www.digitalocean.com/community/tutorials/how-to-add-swap-space-on-ubuntu-16-04
Month: July 2016
Magento 2: How to call any template block from phtml file?
https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts In Magento 1.x, you could call/print any module’s template block in any other template (phtml) file with the following code: 1 2 3 4 echo $this->getLayout() ->createBlock('newmodule/newblock') ->setTemplate('newmodule/newblock.phtml') ->toHtml(); In Magento 2.x, it’s slightly different. Below is the...
Magento 2: Get Store Information (Store ID, Code, Name, URL, Website ID)
http://blog.chapagain.com.np/magento-2-get-store-information-store-id-code-name-url-website-id/ This article shows how we can get store information in Magento 2. We will be fetching store id, store code, store name, store url, and store’s website id. We also write a function which checks if the store is...
Magento 2: Get Currency Code, Currency Symbol & Currency Rate
http://blog.chapagain.com.np/magento-2-get-currency-code-currency-symbol-currency-rate/ Tis article shows how we can get our store’s currency code, currency symbol, and currency rate in Magento 2. We will be fetching all base, default and current currency code. We will also be fetching available currency codes and...
How To Set Up Apache Virtual Hosts on Ubuntu 14.04 LTS
How To Set Up Apache Virtual Hosts on Ubuntu 14.04 LTS https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts Introduction The Apache web server is the most popular way of serving web content on the internet. It accounts for more than half of all active websites on...
Learn LESS in 10 Minutes (or Less)
http://tutorialzine.com/2015/07/learn-less-in-10-minutes-or-less/
Magento payment method tuturial
http://code.tutsplus.com/series/create-a-custom-payment-method-module-in-magento--cms-784
Magento 2 best tutrial
good example for Ui component grid :best approval http://www.advancedcheckout.com/blog/magento2-tutorial-how-to-create-admin-grid-in-magento2.html/ example grid Ui https://www.ashsmith.io/magento2/
add category in advanced search Magento 1
http://www.expertwebadvisor.com/add-search-by-category-in-advanced-search-in-magento/
3 Programming Concepts and Conventions
1.Composer install magento 2 composer create-project --repository-url=https://repo.magento.com/magento/project-enterprise-edition <installation directory name> 2. Service contracts A service contract is a set of PHP interfaces that is defined by a module. This contract comprises data interfaces and service interfaces. Data interfaces define various functions, such...