Skip to content

Instantly share code, notes, and snippets.

@iancoffey
iancoffey / gist:1943440
Created February 29, 2012 18:45
pointless
if (!empty($id)) {
$group_name = h($metagroup['name']);
} else {
$group_name = h($metagroup['name']);
}
<?php
if (!extension_loaded('pcntl')) {
print 'no pcntl';
}
<script>
$(function() {
$(".tree_node").click(function(e) {
e.preventDefault();
id = $(this).attr("id");
vis = $("#details_" + id).is(":visible");
$(this).toggleClass("tree_closed",vis);
$(this).toggleClass("tree_open",!vis);
$("#details_" + id).toggle(!vis);
});