Drupal, Front End Development, Node.js
INTRODUCTION Gulp is an open-source Javascript toolkit and task runner which is built on Node.js and NPM and used for the optimization of time-consuming and repetitive tasks. Hundreds of plugins are available for different tasks You don’t have to program everything by yourself, there are nearly 800 plugins ready for Gulp.js. But even more, Node.js […]
What is H5P? H5P is an open-source software platform that allows users to create and share interactive and multimedia content, such as quizzes, interactive videos, and interactive timelines. H5P stands for HTML5 Package, and it is built on top of the HTML5 standard, making it compatible with a wide range of web browsers and devices. […]
Introduction Drupal has recently introduced one of its greatest features i.e., configuration management. For instance, you need a stage file proxy module on your local, dev and stage environments but not on a production environment. This is where the configuration split module comes into the picture. It helps users to split/divide configurations for different environments. […]
What is Multilingual? As the name suggests, a multilingual website is a website that has content in more than one language. Although they make up most of the global users, English speakers aren’t the only ones using the internet. There are other widely used languages and if you implement them into your website, you’ll be […]
Introduction A theme is a collection of files that implements the look of the site. They simply implement the HTML, the CSS, and JavaScript that will be making our site unique. They also consist of a bit of simple logic that is used to make our website reuse or switch markup in different cases. STEP […]
Dialogs are a quick and easy way to display additional information without reloading the entire page. Dialog boxes can display just some static text, any node or form of your page, a views page, or any custom markup you’ll feed them. In order to open some link/node/page in a modal window, you can add the […]
Creating editorial workflow using content moderation is used to speed up the publishing process. Imagine a website has 10 content types, hundreds of contents for each content type, and daily contents are updated or added by a single admin user who has the publish and unpublish permission. So admin user can verify and publish each […]
There may be a need to pass a variable, checkbox settings, or some global settings from drupal to react. This can be achieved by passing data from drupal into an API and consuming the same API in react. But why call an extra API when we can achieve it without it? We will be using […]
React is a JavaScript library that makes it painless to create interactive UIs. Unfortunately, embedding React into a Drupal site is not straightforward. In this article, I will show you relatively simple methods of how to do so. React can be integrated with Drupal in 2 ways: Fully decoupled Partially Decoupled (Loosely Coupled) Fully Decoupled […]