Skip to content

Instantly share code, notes, and snippets.

View kbjohnson90's full-sized avatar

Kyle B. Johnson kbjohnson90

View GitHub Profile
@kbjohnson90
kbjohnson90 / mock_save
Created October 3, 2014 19:30
AutoAccelerator Activity Filter
var type_options = document.getElementsByName("type_advanced[]")[0].options;
var select_type = ['Call', 'Task'];
multiselect(type_options, select_type);
var status_options = document.getElementsByName("status_advanced[]")[0].options;
var select_status = ['Scheduled (Calls,Appointments)', 'Scheduled (Tasks)'];
multiselect(status_options, select_status);
@kbjohnson90
kbjohnson90 / .gitignore
Created August 18, 2014 16:01
FUEL CMS
.DS_Store
fuel/application/config/development
fuel/application/cache/*
!fuel/application/cache/index.html
!fuel/application/cache/.htaccess
fuel/application/logs/*
!fuel/application/logs/index.html
@kbjohnson90
kbjohnson90 / event_helper.php
Last active August 29, 2015 13:58
FUEL CMS Forum: (1704) Helper Function Redeclaration
<?php
/**
* Get Modules
*
* Returns a list of Modules from the 'modules_allowed' configuration
*
* @access public
* @return array modules
*/
function event_helper_get_modules() {