Skip to content

Instantly share code, notes, and snippets.

View a-fro's full-sized avatar

Aaron Froehlich a-fro

  • Cornell University
  • Ithaca, NY
View GitHub Profile
@a-fro
a-fro / gist:5222565
Last active December 15, 2015 07:19
<?php
/**
* @file
* Tweet block bean plugin.
*/
/**
* Require the twitteroauth library
*/
require_once(drupal_get_path('module','bean_tweets') . '/libraries/twitteroauth/twitteroauth.php');
$conf['twitter_consumer_key'] = [consumer_key_here];
$conf['twitter_consumer_secret'] = [consumer_secret_here];
$conf['twitter_access_token'] = [access_token_here];
$conf['twitter_token_secret'] = [token_secret_here];
<?php
/**
* @file
* Bean admin page for setting up oAuth
*/
/**
* Admin form.
*/
function bean_tweets_admin($form, &$form_state) {
<?php
/**
* Implements hook_uninstall().
*/
function bean_tweets_uninstall() {
variable_del('twitter_consumer_key');
variable_del('twitter_consumer_secret');
variable_del('twitter_access_token');
variable_del('twitter_token_secret');
<?php
/**
* Implements hook_menu().
*/
function bean_tweets_menu() {
$items = array();
$items['admin/config/system/bean_tweets'] = array(
'title' => t('Bean Tweets OAuth'),
'description' => t('Configure OAuth for Bean Tweets module'),
'page callback' => 'drupal_get_form',
<?php
/**
* @file
* Tweet block bean plugin.
*/
/**
* Require the twitteroauth library
*/
require_once(drupal_get_path('module','bean_tweets') . '/libraries/twitteroauth/twitteroauth.php');
<?php
/**
* @file
* Tweet block bean plugin.
*/
/**
* Require the twitteroauth library
*/
require_once(drupal_get_path('module','bean_tweets') . '/libraries/twitteroauth/twitteroauth.php');
h1 {
font-size: 2em;
font-weight: normal;
&.yell {
text-decoration: uppercase;
font-weight: bold;
}
}
nav ul {
width: 100%;
display: table;
aside & { // in this case, our submenu markup is in the aside
display: block;
width: 150px; }
li {
display: table-cell;
@a-fro
a-fro / DrupalVM3.0.md
Last active May 27, 2016 13:53
Notes on upgrading to the latest/greatest DrupalVM for ILR

Upgrading to DrupalVM 3.0 with PHP 7.0

  1. If you are in the middle of some work, feel free to create a backup of your current database, either with SequelPro, or via

    drush cc all
    drush sql-dump -l default --gzip --result-file=../db/backups/pre-vm-upgrade-$(date +%m.%d.%y-%H-%M).sql.gzip
    
  2. Remove the current environment with vagrant destroy -f