I hereby claim:
- I am davereid on github.
- I am davereid (https://keybase.io/davereid) on keybase.
- I have a public key whose fingerprint is 8089 8106 BAB6 873B 5406 4585 0E47 507B 7D69 8DD9
To claim this, I am signing this object:
| function mymodule_filter_info_alter(&$info) { | |
| $info['media']['cache'] = FALSE; | |
| } |
| @-moz-document domain("drupal.org") { | |
| .submitted a[href="/user/422992"]:after, /*IWasBornToWin*/ | |
| .submitted a[href="/user/25027"]:after, /*dgtlmoon*/ | |
| .submitted a[href="/user/412207"]:after, /*jddeli*/ | |
| .submitted a[href="/user/69670"]:after /*zoon_unit*/ | |
| { | |
| content: "BLACKLISTED"; | |
| background-color: #000000; | |
| color: #ffffff; | |
| font-weight: bold; |
| name = Debug | |
| description = Helps debug a corrupted module_implements cache | |
| core = 7.x |
| <?php | |
| /** | |
| * Implements_drush_help_alter(). | |
| */ | |
| function multisite_sql_drush_help_alter(&$command) { | |
| if ($command['command'] == 'sql-drop') { | |
| $command['options']['ignore-prefix'] = 'Ignore database prefixing if found.'; | |
| } | |
| } |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Implements hook_page_alter(). | |
| */ | |
| function batch_yakety_sax_page_alter(&$page) { | |
| if (current_path() == 'batch' && isset($_REQUEST['id']) && batch_load($_REQUEST['id'])) { | |
| $page['content']['system_main']['yakety']['#markup'] = '<iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/playlists/28530082&color=0066cc&auto_play=true&hide_related=false&show_artwork=true"></iframe>'; | |
| } | |
| } |
Problem:
Context:
| <?php | |
| // ~/.drush/drushrc.php | |
| if ($root = drush_get_option('root')) { | |
| $drush_dir = str_replace('/docroot', '/drush', $root); | |
| if (is_file($drush_dir . '/drushrc.php')) { | |
| $options['config'] = $drush_dir . '/drushrc.php'; | |
| } | |
| } |
| <?php | |
| // Load a drushrc.php file from the 'drush' folder at the root of the current | |
| // git repository. | |
| if ($repo_root = _drushrc_find_repo_root()) { | |
| drush_set_context('DRUSH_REPO_ROOT', $repo_root); | |
| if (is_dir($repo_root . '/drush')) { | |
| if (is_file($repo_root . '/drush/drushrc.php')) { | |
| $options['config'] = $repo_root . '/drush/drushrc.php'; |