Skip to content

Instantly share code, notes, and snippets.

@shadcn
shadcn / gist:5490042
Last active December 16, 2015 20:09
Drupal 7 - Get breadcrumb by node id.
<?php
function _get_breadcrumb_by_nid($nid) {
$node = node_load($nid);
// If a node is not found, return.
if (!$node) {
return;
}
@shadcn
shadcn / gist:6667198
Created September 23, 2013 06:56
Responsive panels regions hooks for OA2
<?php
/**
* Implements hook_responsive_panels_regions_positions_alter().
*/
function oa_dashboard_responsive_panels_regions_positions_alter(&$positions) {
// We use the top position for the breadcrumb only, so we unset it here.
unset($positions['top']);
}
<?php
/**
* Implements hook_oa_responsive_regions_positions_alter().
*/
function oa_dashboard_oa_responsive_regions_positions_alter(&$positions) {
// We will keep the top position for the oa navbar so we unset it here.
unset($positions['top']);
}
@shadcn
shadcn / gist:8441724
Created January 15, 2014 18:34
Drupal: function to find users with only authenticated role.
<?php
/**
* Helper function to find users with authenticated role only.
*/
function _users_with_authenticated_role_only() {
return db_query('SELECT uid, name, mail FROM users u WHERE uid > 0 AND NOT EXISTS (SELECT 1 from users_roles ur WHERE u.uid = ur.uid)')->fetchAll();
}
@shadcn
shadcn / gist:8997702
Created February 14, 2014 08:37
Equal column heights for Bootstrap
[class*="col-"]{
margin-bottom: -99999px;
padding-bottom: 99999px;
}
@shadcn
shadcn / gist:10392401
Created April 10, 2014 15:11
Drupal - Get field value using entity api
<?php
$value = entity_metadata_wrapper('node', $node)->field_foo_bar->value();
@shadcn
shadcn / _font.scss
Last active August 29, 2015 14:00
font-face for Radix
// Font faces
// --------------------------------------------------
@import "compass/css3/font-face";
$font-faces: ('GothamRnd-Medium', 'GothamRnd-Book');
@each $font-face in $font-faces {
@include font-face(
'#{$font-face}',
font-files(
"#{$font-face}.woff", woff,
@shadcn
shadcn / gist:9b660d701816854dc407
Created May 2, 2014 17:51
Hide icon from the dock
Set LSUIElement to YES
<div class="row">
<div class="col-md-4">Column 1</div>
<div class="col-md-8">Column 2</div>
</div>
@shadcn
shadcn / gist:8e4420f0045d72970c9d
Created May 16, 2014 12:16
Radix - disable responsive
// Media queries breakpoints
// --------------------------------------------------
// Extra small screen / phone
// Note: Deprecated $screen-xs and $screen-phone as of v3.0.1
$screen-xs: 1px !default;
$screen-xs-min: $screen-xs !default;
$screen-phone: $screen-xs-min !default;
// Small screen / tablet