Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View klaftertief's full-sized avatar

Jonas Coch klaftertief

View GitHub Profile
// everyone's new favorite closure pattern:
(function(window,document,undefined){ ... })(this,this.document);
// when minified:
(function(w,d,u){ ... })(this,this.document);
// which means all uses of window/document/undefined inside the closure
// will be single-lettered, so big gains in minification.
// it also will speed up scope chain traversal a tiny tiny little bit.
<?php
require_once(TOOLKIT . '/class.datasource.php');
Class datasourcedays extends Datasource{
public $dsParamROOTELEMENT = 'days';
public $dsParamURL = 'http://symphony.dev';
public $dsParamXPATH = '/';
public $dsParamCACHE = '60';
<?php
require_once(TOOLKIT . '/class.datasource.php');
require_once(DOCROOT . '/extensions/asdc/lib/class.asdc.php');
Class datasourceforum_discussions_by_category extends Datasource{
private static $_fields;
private static $_sections;
<?php
require_once(TOOLKIT . '/class.datasource.php');
Class datasourceblog_post_moderated_comment_count extends Datasource{
var $dsParamROOTELEMENT = 'blog-post-moderated-comment-count';
var $dsParamORDER = 'desc';
var $dsParamLIMIT = '9999';
var $dsParamREDIRECTONEMPTY = 'no';
server {
listen 80;
server_name localhost;
access_log /path/to/log/access.log;
error_log /path/to/log/error.log;
location / {
root /path/to/root;
index index.php;