Skip to main content

Drupal Views Field Filter

T

here are two kind of filters in Drupal, Text format filters and Views field filter. In this article we will discuss Views field filter in details.

We will create a filter that filters a node which is the latest one created. This is interesting when used in connection with other filters especially taxonomy term for a specific vocabulary. For example show me all articles with term Backend except the latest one with any term in the vocabulary. 

Let's explain it further, I have a vocabulary Articles which contains terms (Backend, Frontend & DevOps). When I create a new article I can assign one or more terms to it since some articles may belong to multiple terms like both Backend & Frontend and so on.

Now I want to show the latest article on front page which is easy to achieve using the existing Views filters (Authored on field) and limit result to one. But I don't want to show this latest article in any list of Backend, Frontend or DevOps since this has been already shown on front page and I don't want a duplicate link/article.

Now a million dollar comment is that the Backend list doesn't know if the latest article on front page is selected from this list or not and so are Frontend & DevOps lists. They are simply filtered on corresponding taxonomy terms (backend, frontend, devops). 

In simple words and yet in simple SQL this is the problem of sub-query i.e first we find the latest article with a sub-query and then filter it in the main query like nid != latest article id.

A pseudo code would look something like the following: 

SELECT * FROM CONTENT_TYPES
WHERE field_tags  = Backend
AND NID != ( SELECT NID FROM CONTENT_TYPES ORDER BY authored_on DESC LIMIT 1);

 

  • Views Filter

  • What to do ?

  • 1. Define a new plugin

  • 2. Implement hook_views_data

  • 3. Using a hook


Troubleshooting

T

rouble shooting is an essential part of any software system. As a Drupal developer it is important to have knowledge about the most important tips about troubleshooting.

  • Install/Uninstall module error

  • The context is not valid

  • Solved: Drupal - Exception: Serialization of Symfony is not allowed in serialize line 14

  • The module mysql is not installed

  • Composer update memory limit


Creating Random Image Module

I

use some online websites to show a random image in my code/websites, but it is very slow and sometime doesn't provide an image. Since image is usually a bigger file (than text) and it might be a load on those online servers. Therefore I decided to develop a small module where I simply upload images with any Content Types and then I can get a random image from them of desired dimensions (wxh).

In this article I would like to create a simple Drupal ( MVC ) module. The big question here is how to resize an image to user required size. Well we can do so by creating an Image style in Drupal and can choose it for any rendering image. That works but we can create a limited number of image sizes/styles this way.

I wanted to have a plethora of image sizes available to users for example ranging from 16 pixels to 4800 pixel and this would result in 22 million different styles which is not feasible using Drupal GUI Image styles.

At the same time I wanted to use the Drupal builtin modules for Image Styles and Image Effects. Hence I ended up with creating/configure the image styles on the fly (at run time). This way we don't need to save any of the image style in Drupal DB.

The user simply asks for a dimension, our module will create an object (OOP), resize it and then provide that image to the user through the API.

  • Create File Structure

  • Demo online

  • Download


Drupal file system

M

any times you need to interact with files in your modules or coding. 

In this article we will mention the most important functions that Drupal provides out of the box.

  • Private and Public paths


Create Entity programatically

C

reate Entity programatically