Skip to content

Instantly share code, notes, and snippets.

@GDmac
GDmac / eecms cats with posts
Created February 23, 2012 17:49
Mysql joining 3 tables with possible entries
$query = "
SELECT
c.cat_id, cat_name, count(t.status) AS count_posts
FROM
exp_categories c
LEFT JOIN exp_category_posts AS p
ON p.cat_id = c.cat_id
LEFT JOIN exp_channel_titles AS t
ON t.entry_id = p.entry_id
AND t.status != 'closed'
@GDmac
GDmac / fullcal_demo.html
Created December 25, 2011 15:45
EE full_calendar demo, regular channel entries
{!--
// -----------------------------------------------------------------------
// template_group/fullcal_demo
--}
<script type='text/javascript'>
// for start_on and stop_before parameters format 2011-12-25 13:00
function myDate(d) {
return d.getFullYear() + '-' +
(d.getMonth() < 9 ? '0' : '') + (d.getMonth()+1) + '-' +
@GDmac
GDmac / gw_categories select-menu
Created May 25, 2011 17:32
Select menu with gwcode_categories
[select name="category[]" id="categories" multiple="multiple"]
{exp:gwcode_categories channel="locations_channel" style="linear"}
{if "{new_group}"=="yes"}
{if {cat_count}>1}
[/optgroup]
{/if}
[optgroup label="{cat_group_name}"]
{/if}
[option value="{cat_id}"]{cat_name}[/option]
{/exp:gwcode_categories}
@GDmac
GDmac / hello.php
Created May 25, 2014 10:52
Simple request
<?php
$req = parse_url($_SERVER['REQUEST_URI']);
// querystring
isset($req['query']) ? parse_str($req['query'], $req['query_arr']) : $req['query_arr'] = array();
// route
$req['route'] = substr($_SERVER['PHP_SELF'], strlen($_SERVER['SCRIPT_NAME']));
@GDmac
GDmac / Readme.md
Last active August 29, 2015 14:01
Protected Pages Bolt.cm extension

ProtectedPages extension

Make sections of your site (template) accessible to members only.

Quick Setup

Create a template with a loginform and the processform tag. The form should at least provide username, password and action. e.g.:

@GDmac
GDmac / rfc.md
Last active August 29, 2015 13:57
Mobile sharing buttons (app or website)

Sharing on the mobile platform

Many smartphone users (probably most) use dedicated apps for their social sharing. However, when clicking on a share button on websites, the user is redirected to the website instead of to the app for twitter and facebook. This document tries to offer an alternative route for sharing on mobile.

User story and technique

  1. When a user clicks the share button for the first time
    ask if he/she wants to use an app or to go to the website.
    Use local storage (jstorage) or cookies to store user preferences.
  2. When the user wants to use the app, use a small script to verify