Drupal Interview Preparation Topic

Entites














OOPS
  
  
 







How many custom module developed in drupal 8
Hook_init replacement in drupal 8
Event in drupal 8
How can update the note title in drupal 8
Custom permission in drupal 7 and drupal 8
Drupal 8 advantage
Required files of custom module 8
Custom controller drupal 8
Entity and user entity
Symfony Component
 Dependency injection
Paragraph
Layout builder
Custom entity
Custom configuration
Event subscriber
Services
Singleton design pattern
Abstract class and interface
Cache and cache tags
View modification like in filter based on user role
Elastic search and query
Primary key and unique key
Join
Relationship
Indexing 
Configuration management  CMI 
Add js or css in a form or block
Drush
Composer
Improve cache performance
Queue and Queue worker
Config form
Contextual filter and relationship
Multi Domain and Multi Site
Common helper
How to send local changes in dev or stag environment
Apply a Drupal 8 module patch in composer.json
Install drupal via composer ,install module by composer,drush
Jquery once,jquery validate
Story book or book integrate in drupal
Cron job in drupal 8
Drush cim or drush config
How do improve site performance 


No comments:

Write a program in PHP to reverse a number

A number can be written in reverse order. For example 12345 = 54321 <?php   $ num = 23456;   $ revnum = 0;   while ($ num > 1)   {   $...