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 / mymodule.module
Created February 6, 2014 16:12
Node access example
function mymodule_node_access($node, $op, $account) {
$controlled_nids = array(
1,
2
);
if (isset($node->nid) && in_array($node->nid, $controlled_nids)) {
$acceptable_users = array(
'2',
);
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;
h1 {
font-size: 2em;
font-weight: normal;
&.yell {
text-decoration: uppercase;
font-weight: bold;
}
}
<?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');
<?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
/**
* 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
/**
* @file
* Bean admin page for setting up oAuth
*/
/**
* Admin form.
*/
function bean_tweets_admin($form, &$form_state) {
$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];
@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');