By editor, 19 June, 2017 Test a webpage for Retina display Tags Testing CSS Theming To test retina display, just adjust the screen pixel ratio.
By editor, 16 June, 2017 Linux shell output - Handle StdOut Tags Linux Shell The linux shell/bash terminal default behaviour is print output to the terminal (StdOut : Standard output). But sometimes we need to change this behaviour like save toi a file, display noting ... Here some exaple of user case.
By editor, 13 June, 2017 Create a custom DRUSH command on drupal 8 Tags Drupal 8 Code Drush Module To create a custom drush command, you must create a custom module like this (Here, mymodule).
By editor, 13 June, 2017 Alter table structure on Drupal 8 Tags Drupal 8 Code Database Module To update a table you must create a custom module. Example , Here we use mymodule.
By editor, 10 June, 2017 PHP : Get Class Name Tags Module Code PHP The structure of the examples are like: namespace Drupal\mymodule\Tools; class MyTools extends MyToolsBase { ... } ... class MyToolsBase { public function showClass() { $class_name = ....