Skip to content

Instantly share code, notes, and snippets.

@drupality
drupality / gist:9e2ce8b2f4a149ec7dd1
Created December 5, 2015 20:34
Drupal - rebuild permissions via drush
drush php-eval 'node_access_rebuild();'
@drupality
drupality / gist:2e3374e85eb870c33825
Last active August 29, 2015 14:26
Drupal 7 CLI setup
CREATE DATABASE mydb DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci;
chmod -R 777 sites/default/files
chmod -R 777 sites/default/settings.php
@drupality
drupality / mymodule.php
Last active August 29, 2015 14:16
Example of hide text format chooser in Drupal 7
<?php
/**
* Implements hook_element_info_alter().
*/
function mymodule_element_info_alter(&$type) {
if (isset($type['text_format'])) {
$type['text_format']['#process'][] = 'mymodule_process_format';
}
}