Drupal

Zyxware default image4
| 4 min read
Before we discuss on how to to join multiple database tables using db_select in Drupal 7, let me tell you that we can add as many joins as we want and most methods such as, 'fields', 'conditions', joins etc. can be called multiple times. However, one thing may be worth mentioning is that the call to join() needs to be separate. It should not be "chained", meaning that one should use this,
Zyxware default image4
| 2 min read
Zyxware Technologies is happy to announce that we have contributed Custom Landing page builder, yet another module, to the Drupal community.The Custom Landing Page Builder module enables webmasters to build custom landing pages using WYSIWYG editor while still having complete control over the full layout of the page including the header, navigation, page content, footer, forms and so on.
Zyxware default image4
| 5 min read
When Dries Buytaert and Hans Snijder wrote Drupal as a message board that would help them to communicate news and announcements between the student communities, little would they have imagined that it would become an open source in 2001 and go on to become an extremely popular Content Management platform.
Zyxware default image3
| 3 min read
Technology has completely changed the way businesses were operated in the past. Now, marketers can make their products available to the customers at their finger tips at any place and time. About two decades ago, nobody could ever imagine that buying and selling would be carried out in such a seamless manner sans the brick and mortar retail outlets. All this has been possible only because of technological advancements. Technology is progressing in leaps and bounds, opening newer avenues for success.
Zyxware default image4
| 2 min read
The Commerce Card on File module provides an API with a user interface for storing and reusing credit card data on subsequent orders. This module didn't hold full card numbers locally. Instead of this it stores the remote ID of the full card data from the payment gateway that is used to validate and process your credit card transactions.
Zyxware default image3
| 4 min read
Drupal has been used and adapted by millions of websites across the world and not without reason. This top open source CMS is extremely flexible and robust and has found favour amongst the developer community due to the various qualities it possesses. Across the world, many renowned websites such as virgin.com, weather.com, theeconomist.com and london.gov.uk have applauded its versatility and flexibility, and used the Drupal development framework to their benefit.
Zyxware default image1
| 2 min read
The Paragraphs module is a new way of content creation. Instead of putting all contents through WYSIWYG body field, including videos and images, end-users can now choose on-the-fly between pre-defined Paragraph Types independent from one another.
Zyxware default image2
| 2 min read
In Drupal 7, when we do customizations we would want the custom module to create content in the form of a render array. We know that a page callback should return a render array which allows the custom module to handle the content as long as possible in the page generation process. Sometimes, wrapping two render array elements together could be an easy way out while dealing with render array manipulations. Here is how we can achieve that.