Skip to content

Instantly share code, notes, and snippets.

View DESIGNfromWITHIN's full-sized avatar

Menno Pietersen DESIGNfromWITHIN

View GitHub Profile
@DESIGNfromWITHIN
DESIGNfromWITHIN / Gruntfile.js
Last active August 29, 2015 14:03
MODX Grunt & Compass build file
/*global module:false*/
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
concat: {
options: {
separator: ';',
},
dist: {
// create the module and name it DESIGNfromWITHIN
var DESIGNfromWITHIN = angular.module('DESIGNfromWITHIN', ['ngRoute', 'ngAnimate', 'ngSanitize'])
.config(function($sceProvider) {
// Completely disable SCE. For demonstration purposes only!
// Do not use in new projects.
$sceProvider.enabled(false);
});
// configure our routes
@DESIGNfromWITHIN
DESIGNfromWITHIN / gist:7fe27d6305cd23edfd83
Created December 11, 2014 20:56
resolve.clientconfig.php
<?php
/**
* Subpackage Resolver file for cosmos extra
*
* Copyright 2014 by Menno Pietersen info@themesmodx.com
* Created on 12-11-2014
*
* @package cosmos
* @subpackage build
*/
@DESIGNfromWITHIN
DESIGNfromWITHIN / gist:68c905ce692d62b0047e
Last active December 13, 2015 23:12
addContent.rersolver.php
<?php
$sources = array(
'data' => $modx->getOption('core_path') . 'components/cosmos/contentResources/',
);
$addContent = $modx->getOption('add_content', $options, false);
if ($addContent) {
$resources = include $sources['data'] . 'transport.resources.php';
foreach ($resources as $resource) {
$modx->log(xPDO::LOG_LEVEL_INFO,'Installing content');
$resource->save();