Skip to content

Instantly share code, notes, and snippets.

View mrconnerton's full-sized avatar

Matthew Connerton mrconnerton

View GitHub Profile
@mrconnerton
mrconnerton / gist:1979037
Last active December 4, 2018 15:13
node form in ctools modal drupal 7
<?php
/*
Make Sure you include:
ctools_include('modal');
ctools_modal_add_js();
On the pages you put your link.
*/
@mbopp
mbopp / etc:init.d:memcache
Created July 9, 2013 13:14
Multi Instance Configuration for Memcache
#! /bin/bash
### BEGIN INIT INFO
# Provides: memcached
# Required-Start: $syslog
# Required-Stop: $syslog
# Should-Start: $local_fs
# Should-Stop: $local_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: memcached - Memory caching daemon
@DuaelFr
DuaelFr / blocks.inc
Created July 18, 2013 09:39
Show an image field using field_view_field and colorbox
$build = field_view_field('user', $context['entity'], 'field_picture', array(
'label' => 'hidden',
'type' => 'colorbox',
'settings' => array(
'colorbox_node_style' => 'user_large',
'colorbox_image_style' => 'colorbox',
),
));