This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Implements hook_form_FORM_ID_alter() for views_exposed_form. | |
| */ | |
| function MODULE_form_views_exposed_form_alter(&$form, &$form_state) { | |
| $form['#after_build'] = array('_MODULE_apply_js'); | |
| } | |
| function _MODULE_apply_js($form, &$form_state) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function MODULE_form_alter(&$form, &$form_state, $form_id) { | |
| if ($form_id == 'views_exposed_filters') { | |
| $form['field_date_value_year']['#attributes']['autocomplete'] = 'off'; | |
| $form['field_date_value_month']['#attributes']['autocomplete'] = 'off'; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Hook to register the CKEditor plugin - it would appear in the plugins list on the profile setting page. | |
| */ | |
| function hook_ckeditor_plugin() { | |
| return array( | |
| 'plugin_name' => array( | |
| // Name of the plugin used to write it. | |
| 'name' => 'plugin_name', | |
| // Description of the plugin - it would be displayed in the plugins management section of profile settings. | |
| 'desc' => t('Plugin description'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var consoleLog = console.log; | |
| console.log = function() { | |
| consoleLog.apply(this, $.map(arguments, function(obj) { | |
| return $.isPlainObject(obj) ? $.extend(true, {}, obj) : obj; | |
| })); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var passport = require('passport') | |
| , express = require('express') | |
| , app = express(); | |
| // Passport session setup. | |
| passport.serializeUser(function(user, done) { | |
| done(null, user); | |
| }); | |
| passport.deserializeUser(function(user, done) { | |
| done(null, user); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (!('indexOf' in Array.prototype)) { | |
| Array.prototype.indexOf= function(find, i) { | |
| if (i===undefined) i= 0; | |
| if (i<0) i+= this.length; | |
| if (i<0) i= 0; | |
| for (var n= this.length; i<n; i++) | |
| if (i in this && this[i]===find) | |
| return i; | |
| return -1; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = function(callback) { | |
| if (callback) { | |
| process.nextTick(callback); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setTimeout(function() { | |
| var name = $('.header-user img.member-avatar').attr('title'); | |
| $('.js-member-on-card-menu img[title="' + name + '"]').each(function() { | |
| $(this).parents('.list-card-details').css('background-color', '#fcaf3e'); | |
| }); | |
| }, 2000); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = {}; | |
| module.exports.parse = function parse() { | |
| var args = Array.prototype.slice.call(arguments); | |
| var callback = args.pop(); | |
| var _this = this; | |
| process.nextTick(function() { | |
| try { | |
| var obj = JSON.parse.apply(_this, args); | |
| return callback.apply(_this, [null, obj]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Return a flattened list of all fields ever used on a MongoDB collection. | |
| // Usage: `mongo --quiet <database> dbFields.js` | |
| // Collection for which to get fields | |
| var collection = 'users'; | |
| // Determines how to represent the keys of an array of objects. | |
| // This allows for differentiating between nested objects and nested arrays of objects. | |
| // | |
| // e.g. for a document |