- Heavily Patch Drupal 7.x install
- API Compatible with Drupal 7.x
- Twig Template Engine & PHP Template Engine
- jQuery 2.x support
- HTML5 Support
- Entity API Support
- Views Support
Random extra features.
| #!/bin/bash | |
| curl -s https://gist.github.com/ericduran/742193/raw > ~/.gitconfig | |
| curl -s https://gist.github.com/ericduran/5069301/raw > ~/.zshrc | |
| curl -s https://gist.github.com/ericduran/5786967/raw > ~/.gitignore_global |
| { | |
| "log": { | |
| "version": "1.2", | |
| "creator": { | |
| "name": "WebInspector", | |
| "version": "537.36" | |
| }, | |
| "pages": [ | |
| { | |
| "startedDateTime": "2013-08-24T20:16:16.997Z", |
| /Applications/Google\ Chrome\ Canary.app/Contents/MacOS/Google\ Chrome\ Canary --remote-debugging-port=9222 --no-first-run --remote-debugging-frontend="http://localhost:8000/front_end/inspector.html" --user-data-dir=Workspace/chromium/chromeServerProfile |
Random extra features.
###Work Requirements
Current Apps installed on Mac:
| <?php | |
| // Register our shutdown function so that no other shutdown functions run before this one. | |
| // This shutdown function calls exit(), immediately short-circuiting any other shutdown functions, | |
| // such as those registered by the devel.module for statistics. | |
| register_shutdown_function('status_shutdown'); | |
| function status_shutdown() { | |
| exit(); | |
| } | |
| // Drupal bootstrap. |
| <!DOCTYPE HTML> | |
| <html> | |
| <head> | |
| <title>Drupal Vs</title> | |
| <script src="http://d3js.org/d3.v2.min.js?2.10.0"></script> | |
| <script src="xkcd.js"></script> | |
| <style> |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Checks if this entity is the default revision (published). | |
| * | |
| * @param object $entity | |
| * The entity object, e.g., $node. | |
| * | |
| * @return bool | |
| * TRUE if the entity is the default revision, FALSE otherwise. | |
| */ | |
| function _metatag_isdefaultrevision($entity) { |
| https://gist.github.com/11405412 |