defaults write com.apple.dock autohide-delay -float 0; defaults write com.apple.dock autohide-time-modifier -int 0; killall Dock;defaults delete com.apple.dock autohide-delay; defaults delete com.apple.dock autohide-time-modifier; killall Dock| <?php | |
| /** | |
| * @file | |
| * Script to help cleanup the not existing permissions from your roles. | |
| * | |
| * @code | |
| * drush scr clean_permissions.php | |
| * drush -y cex | |
| * @endcode | |
| * |
| <?php | |
| use Drupal\Core\DrupalKernel; | |
| use Symfony\Component\HttpFoundation\Request; | |
| use Drupal\node\Entity\Node; | |
| // Bootstrap Drupal. | |
| $autoloader = require_once __DIR__ . '/vendor/autoload.php'; | |
| $kernel = DrupalKernel::createFromRequest(Request::createFromGlobals(), $autoloader, 'prod'); | |
| $kernel->boot(); |
| vendor/bin/phpcs --standard=Drupal,DrupalPractice -p ./html/modules/custom > phpcs.txt | |
| vendor/bin/phpstan analyse -l 8 ./html/modules/custom > phpstan.txt |
| <?php | |
| use Drupal\Core\Database\Database; | |
| use Drush\Drush; | |
| function find_content_types_with_fields() { | |
| $fields_to_find = [ | |
| 'field_salesforce_account_id', | |
| 'field_publish_on_csrwire', | |
| ]; |
| function ordinal($number) | |
| { | |
| $ends = array( | |
| 'th', | |
| 'st', | |
| 'nd', | |
| 'rd', | |
| 'th', | |
| 'th', | |
| 'th', |
| module.exports = { | |
| content: [ | |
| './{templates, components}/**/*.{twig,js}', | |
| ], | |
| theme: { | |
| extend: {}, | |
| }, | |
| plugins: [] | |
| } |
| <?php | |
| // Example of setting up a batch process in Drupal that runs programmatically without user intervention | |
| // Define batch operations and other batch settings as required: $batch | |
| batch_set($batch); // Initialize and register the batch with Drupal's batch processing system. | |
| drupal_alter('batch', $batch); // Allow other modules to alter the batch settings before it runs. | |
| $batch = &batch_get(); // Retrieve a reference to the current batch array for direct manipulation. | |
| $batch['progressive'] = FALSE; // Set the batch to run non-progressively, suitable for automated processes. | |
| batch_process(); // Start processing the batch without expecting a user-driven progression. |
| ################################################################################### | |
| # | |
| # * | |
| # /( | |
| # ((((, | |
| # /((((((( | |
| # ((((((((((* | |
| # ,((((((((((((((( | |
| # ,((((((((((((((((((( | |
| # ((((((((((((((((((((((((* |
| sed -i 's/utf8mb4_0900_ai_ci/utf8mb4_general_ci/g' db.sql |