Fork your own copy of the DrupalConsole repository to your account
Get a copy of your recently cloned version of console in your machine.
$ git clone [email protected]:[your-git-user-here]/drupal-console.git
| " Make IE Better Compatible " | |
| <!--[if IE]> | |
| <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| ====================================================== | |
| IE6 Only | |
| ================== | |
| _selector {...} |
Fork your own copy of the DrupalConsole repository to your account
Get a copy of your recently cloned version of console in your machine.
$ git clone [email protected]:[your-git-user-here]/drupal-console.git
| #!/usr/bin/env bash | |
| echo ">>> Installing Mailhog" | |
| # Download binary from github | |
| wget --quiet -O ~/mailhog https://github.com/mailhog/MailHog/releases/download/v0.2.1/MailHog_linux_amd64 | |
| # Make it executable | |
| chmod +x ~/mailhog |
| <?php | |
| // To set up a local environment, make a duplicate of this file and name it | |
| // local-settings.inc in the site directory that contains the settings.php file. | |
| // Ignore sites/*/local-settings.php in the .gitignore file. Change the settings.php | |
| // file to include local-settings.php if the file exists. | |
| // Point database to local service. | |
| $databases['default']['default'] = array( | |
| 'database' => 'local_db_name', |
| <?php | |
| /** | |
| * Implements hook_menu(). | |
| */ | |
| function mymodule_menu() { | |
| $items['mymodule/%ctools_js/add'] = array( | |
| 'page callback' => 'mymodule_node_add_modal_callback', | |
| 'page arguments' => array(1), | |
| 'access arguments' => array('access content'), |