By editor, 16 December, 2016 Notify When SSH connection success Tags Drupal 8 Server Linux Method 1. Call Url You can use this method to call a Custom php script, Custom module, Databaselog .... for example. 1. Create a script (here, notify_login_url.sh)
By editor, 13 December, 2016 Solr Configuration for Drupal Tags Drupal 8 Module Drupal 7 Step 1. Install Tomcat And Solr Server (atlest 5.4.1) Step 2. Install Solr Search API On your drupal #Drush# drush en search_api_solr -y Step 3. Copy solr core files
By editor, 8 December, 2016 Adding jQuery UI Widget to drupal 8 Tags Drupal 8 Code jQuery Example : Step 1 : Add libraries. Example: (With theme / or module : mytheme) On : mytheme.libraries.yml file
By editor, 8 December, 2016 Create a configurable Block programmatically Tags Drupal 8 Code Here an example of configurable block.
By editor, 7 December, 2016 SimpleTest : Running PHPUnit tests from command line Tags Drupal 8 Code Debug Testing Initialisation - Create link to the script (Optional). ln -s core/scripts/run-tests.sh ~/bin Run Test and open rest in web browser. php core/scripts/run-tests.sh --browser --class "Drupal\YOUR_MODULE\Tests\JustTest"
By editor, 28 November, 2016 Add a Form in to a Basic Controller Tags Drupal 8 Code Form Drupal 9 NOTE: I don't know this is the best practice, anyway it's working !!!.
By editor, 22 November, 2016 Handle database schemas on Drupal 8 Tags Drupal 8 Code Database Get Database Schema $schema = \Drupal\Core\Database\Database::getConnection()->schema();
By editor, 12 November, 2016 Custom Content Entity Field types of drupal 8 Tags Drupal 8 Code Entity Database Entity Field types, Data types (BaseFieldDefinition::create types)
By editor, 4 November, 2016 Set Drupal System variables manually Tags Drupal 8 Drupal 7 Settings To set Drupal System variables you can use the $settings (on Drupal 8) and $conf (On Drupal 7) array of setting.php file.
By editor, 30 October, 2016 Theme Negotiators - Switch theme dynamically Tags Drupal 8 Code Theming Create a custom module (here : example) For active themes by route you first have to define a service in your $module.services.yml file: On example.services.yml Add: