Technical Blog

Zyxware default image2
| 3 min read
There are a lot of pragmatically created crawlers today. If is a website is open for registration these crawlers can maliciously faux accounts of their own. In such cases, we usually use CAPTCHA. CAPTCHA is like a protective shield for our website from those bots.
Zyxware default image1
| 5 min read
Views bulk operations module is used for performing multiple operations for multiple rows on a view. Here we can have default action on the view configurations and can also add our custom actions as per the requirements. Views bulk operation module reuses and extends Drupal core Action system. Also most of the Drupal core actions are VBO-compatible actions.
Zyxware default image2
| 2 min read
What is Twig? How will it change Drupal themes? Drupal 8 is coming with lot of improvement in theme layer. Twig is a template engine and easy to learn. Twig is help to create template without knowledge of PHP. Twig is part of the symfony2. It created by SensioLabs. The changes in classes and arrays combined to attribute object. In Drupal 8 .tpl.php file is replaced by *.html.twig template files.
Zyxware default image2
| 5 min read
Drupal 8 is new version of Drupal. It is very different from All old Drupal versions. There are lots of new feature in Drupal 8. As you know Drupal8 is based on symphony framework. Are you excited to know what's new in Drupal 8? I have listed out some features below:
Zyxware default image4
| 3 min read
The createItem() method lets you add data to the queue and the numberOfItems() method lets you see how many items are present in the queue. We use the claimItem() method of the queue object to get an item from the queue. claimItem() returns the data property, which contains whatever we put into the queue. If there is no item in the queue then claimItem() will return FALSE. Steps for creating queue.
Zyxware default image3
| 3 min read
The Queue API in Drupal is designed to manage tasks.The queue system allows placing items in a queue and processing them later.The Queue API is a simple,reliable way to keep track huge lists of tasks without requiring you to know anything about the whole group.Prepare your data, put it in one item at a time, and take back one item at a time to process. When you are done with a single item, just report back that you have finished and the item is removed from the queue.
Zyxware default image4
| 2 min read
In Drupal 8, .info file is converted to .info.yml file. It is a symphony component. The .info.yml file contains the metadata about your theme, such as theme name, description, version of the Drupal it supports, and type. Type is new metadata type indicate type of the extension such as module, theme etc.
Zyxware default image2
| 3 min read
This tutorial shows you how to insert a form into a modal so it pops up on your site after a user clicks a link, without having to write any JavaScript at all. The functionality that supplies this is the CTools module and core ajax functionality in Drupal 7.
Zyxware default image4
| 3 min read
The feedAPI module is a famous one for processing custom feeds in different formats like rss/Atom, csv, iCal etc. Now the feedAPI has been upgraded to the "feeds",which have more features and easy to use and customize. However still a lot of Drupal 6 sites uses the feedAPI module for handling external feeds. Let us see how a new parser can be created in feed API module.