Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jyodsh/drupal-7-snippets
Useful Drupal 7 code snippets
https://github.com/jyodsh/drupal-7-snippets
drupal drupal-7 drupal7 drush drush-commands php
Last synced: about 1 month ago
JSON representation
Useful Drupal 7 code snippets
- Host: GitHub
- URL: https://github.com/jyodsh/drupal-7-snippets
- Owner: jyodsh
- License: gpl-3.0
- Created: 2018-07-25T11:37:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-26T10:05:22.000Z (over 6 years ago)
- Last Synced: 2024-11-07T20:08:07.686Z (3 months ago)
- Topics: drupal, drupal-7, drupal7, drush, drush-commands, php
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Usefull Drupal 7 Snippets.
This is a list of useful Drupal snippets and functions that I often reference to enhance or improve my sites.
- [Administration menu disapppears in Drupal 7](#administration-menu-disapppears-in-drupal-7)
### Administration menu disapppears in Drupal 7
If Administration Menu in your project disappears until you will clear cache. Just add this line of code at the end of settings.php file and refresh a page.
```php
$conf['admin_menu_cache_client'] = FALSE;
```