Monthly Archives: December 2014

Dependency Injection In Magento 2

- Magento 2

Dependency injection is a special design pattern for software developed to implement  control inversion and provide a program with the ability to follow the principle of dependency inversion. Spring, Glassfish HK2, Guice, Microsoft Managed Extensibility Framework and other application frameworks support dependency injection.

An injection is the passing of a service to a client (a dependency to a dependent object). The service is made part of the client’s state. The pattern is based on the next fundamental requirement: a service is passed to a client, instead of allowing a client to find the service. It separates the creation of client’s dependencies from its own behavior. As a result, program designs are loosely coupled and able to follow the single responsibility and dependency inversion principles. The opposite approach is implemented in the service locator pattern, which is designed to allow clients to get the information about the system used to find dependencies.

Magento 2 features: Magento 2 Dependency Injection

Everything about Magento 2 on Firebear

Continue Reading

SMS integration extensions for Magento

- Magento tips & tricks

You can use SMS text messages to send automated follow-up messages, abandoned-cart notifications and other similar notices to your customers. The integration of such functions can be performed in a double-quick time. When it comes to running e-commerce SMS promotions there are a lot of different Magento extensions and tools.

magento-sms

Continue Reading