Skip to content

Instantly share code, notes, and snippets.

View vkareh's full-sized avatar

Victor Kareh vkareh

View GitHub Profile
if (!extension_loaded('pdo')) {
dl('pdo.so');
}
@vkareh
vkareh / gist:2990301
Created June 25, 2012 18:15
Forcing an input format on a textfield
$form['my_text_field'] = array(
'#type' => 'text_format',
'#base_type' => 'textfield',
'#title' => t('My Text'),
'#default_value' => '',
'#format' => 'filtered_html',
);
<?php
/**
* Form submit...
*/
function my_module_submit($form, $form_state) {
$email = $form_state['values']['email'];
$message_type = $form_state['values']['message_type'];
$params = array('form_values' => $form_state['values']);
drupal_mail('my_module', $message_type, $email, language_default(), $params);
@vkareh
vkareh / cradle.patch
Created February 28, 2012 16:31
patch for cradle
diff --git a/lib/cradle.js b/lib/cradle.js
index 7700ff6..db5e2a5 100644
--- a/lib/cradle.js
+++ b/lib/cradle.js
@@ -509,7 +509,9 @@ cradle.Connection.prototype.database = function (name) {
}
if (options && options.keys) {
- this.query('POST', path, {}, options, args.callback);
+ var keys = options.keys;
@vkareh
vkareh / .vimrc
Created January 26, 2012 19:35
Drupal-friendly .vimrc
"Enable filetype detection
:filetype on
"General settings
set incsearch "Find as you type
set ignorecase "Ignore case in search
set scrolloff=2 "Number of lines to keep above/below cursor
set smartcase "Only ignore case when all letters are lowercase
set number "Show line numbers
set wildmode=longest,list "Complete longest string, then list alternatives