Skip to content

Instantly share code, notes, and snippets.

@yannickoo
yannickoo / mymodule.module
Created July 12, 2014 11:12
Allows switching theme via $_GET parameter.
<?php
/**
* Implements hook_custom_theme().
*/
function mymodule_products_custom_theme() {
$themes = list_themes();
if (isset($_GET['theme']) && $_GET['theme'] && isset($themes[$_GET['theme']]) && $themes[$_GET['theme']]->status) {
return $_GET['theme'];
@yannickoo
yannickoo / mymodule.admin.inc
Last active August 29, 2015 14:03
Drupal batch example
<?php
/**
* @file
* Administrative tasks for My module.
*/
/**
* Page callback for Batch example form.
*/
@yannickoo
yannickoo / script.js
Last active August 29, 2015 14:03
Open all links in new tab
$('a').on('click', function () {
var a = new RegExp('/' + window.location.host + '/');
if (!a.test(this.href)) {
$(this).click(function (e) {
e.preventDefault();
e.stopPropagation();
window.open(this.href, '_blank');
});
}
});
@yannickoo
yannickoo / script.js
Last active August 29, 2015 14:03
Scale videos so that they are fit into a container
$('video.fit').each(function() {
var $this = $(this);
var $container = $this.parent();
var containerWidth = $container.width();
var containerHeight = $container.height();
$this[0].addEventListener('loadedmetadata', function() {
var videoWidth = $this[0].videoWidth;
var videoHeight = $this[0].videoHeight;
@yannickoo
yannickoo / mymodule.module
Created July 17, 2014 16:20
Extends Drupal's field cardinality select list 20 values.
<?php
/**
* Implements hook_form_alter().
*/
function mymmodule_form_alter(&$form, $form_state, $form_id) {
if ($form_id == 'field_ui_field_edit_form') {
$form['field']['cardinality']['#options'] = array('-1' => t('Unlimited')) + drupal_map_assoc(range(1, 20));
}
}
@yannickoo
yannickoo / script.js
Created September 13, 2014 19:58
Putting a Drupal website into maintenance mode via JS
jQuery.get(Drupal.settings.basePath + 'admin/config/development/maintenance', function (data, status) {
if (status == 'success') {
var token = jQuery(data).find('[name="form_token"]').val();
var build = jQuery(data).find('[name="form_build_id"]').val();
var payload = {
'form_id': 'system_site_maintenance_mode',
'form_token': token,
'form_build_id': build,
'maintenance_mode': 0
};
@yannickoo
yannickoo / code.js
Created October 23, 2014 14:08
Display ticket IDs in Jira's subtask table
(function($){
$('head').append('<style>.bookmarklet-issue-id {color: #fff; background: #3b73af; padding: 1px 2px; border-radius: 5px;}</style>');
$('.subtask-table-container tbody > tr.issuerow').each(function() {
var $this = $(this);
var $id = $this.data('issuekey');
var $firstRow = $this.children('td:first');
$firstRow.after('<td><pre class="bookmarklet-issue-id">' + $id + '</pre></td>');
});
}(jQuery));
Z:\Users\xxx\Music\Collection\$validate($if2(%albumartist%,%artist%),)\%title%
@yannickoo
yannickoo / dabblet.css
Created January 20, 2012 16:07
vertically aligned page
/* vertically aligned page */
/* postcard style */
html, body { height: 100%; text-align: center; white-space: nowrap; margin: 0}
#page { display: inline-block; vertical-align: middle; text-align: left; /* makes the content if page */ white-space: normal; /* behalf normal again */}
body:before{ content: ''; display: inline-block; height: 100%; width: 0; overflow: hidden; vertical-align: middle; margin-left: -.3em;}
/* custom style - you don't need to copy this */
body{ background-color: #000; font-family: 'Lucida Console','Courier New', monospace; color: #0f0; line-height: 20px; font-size: 15px;}
#page{ max-width: 800px; width:100%; background: #000; box-shadow: inset 0 0 10px #0f0, 0 0 40px rgba(0, 0, 0, 0.1) inset; padding: 20px; border-radius: 10px;}
@yannickoo
yannickoo / .htaccess
Last active October 11, 2015 22:48
Redirect www to non-www for Drupal.
#
# Apache/PHP/Drupal settings:
#
# Protect files and directories from prying eyes.
<FilesMatch "\.(engine|inc|info|install|make|module|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)(~|\.sw[op]|\.bak|\.orig|\.save)?$|^(\..*|Entries.*|Repository|Root|Tag|Template)$|^#.*#$|\.php(~|\.sw[op]|\.bak|\.orig\.save)$">
Order allow,deny
</FilesMatch>
# Don't show directory listings for URLs which map to a directory.