Skip to content

Instantly share code, notes, and snippets.

<%php
/*
* PHP Snippet
* Calculate the first and last day of the current month.
*/
$month = date('m');
$year = date('Y');
$last_day = date('t');
/*
* Plugin: picViewer
* A plugin to test with jsFiddle
* and tutorial http://msdn.microsoft.com/en-us/scriptjunkie/ff452703
*/
(function($){
var tabs, gallery, picViewer = $.picViewer = {};
@jonahlyn
jonahlyn / gist:786499
Created January 19, 2011 17:30
Trigger a click on every link on a page with jQuery
$('a').each(function(){
var linkText = ($('img',this).attr('alt')?$('img',this).attr('alt'):$(this).text());
$(this).trigger('click');
console.log(linkText + ' clicked.');
});
@jonahlyn
jonahlyn / console1.js
Created February 9, 2011 22:43
Using jQuery to Extract the Contents of a Web Page
$('a').each(function(index){$(this).append('|' + $(this).attr('href'));});
@jonahlyn
jonahlyn / Non-working Version
Created March 21, 2011 17:25
HSC Bulletins Problems
<!--- This file is automatically generated daily - changes you make will be overwritten --->
<p><a href="http://hscapp.unm.edu/calendar/output/index.cfm?fuseaction=main.release&EntryID=9541" title="<em>News Release <p><u>FOR IMMEDIATE RELEASE</u></p><p>&nbsp;</p>Dr. Diane Lidke to be honored by the Biophysical Society</em> <p>Albuquerque, NM&mdash;March 9, 2011&mdash;Dr. Diane Lidke, Assistant Professor of Pathology at the University of New Mexico and a member of the UNM Cancer Center, will be honored this month with the prestigious 2011 Margaret Oakley Dayhoff Award for her exceptiona</p>"><strong>UNM Cancer Researcher Earns National Award</a></strong></p>
<p><a href="http://hscapp.unm.edu/calendar/output/index.cfm?fuseaction=main.release&EntryID=9542" title="The University of New Mexico College of Nursing invites graduate students interested in pediatrics to submit applications for the Pediatric Nurse Practitioner concentration. Application deadline is June 1, 2011 for fall admission beginning Septemb
@jonahlyn
jonahlyn / index.php
Created April 6, 2011 01:57
Basic Standalone Zend Form
<?php
// Load needed Zend classes
require_once("Zend/Loader.php");
Zend_Loader::loadClass('Zend_View');
Zend_Loader::loadClass('RequestForm');
// Create a view to render the form
$view = new Zend_View();
@jonahlyn
jonahlyn / Check Box
Created April 13, 2011 23:30
Basic Form Elements for Zend Form
// Checkbox Field
$tos = $this->createElement('checkbox', 'tosagree', array(
'label' => 'Check here to agree to our terms of service',
'required' => true,
'uncheckedValue'=> '',
'checkedValue' => 'I Agree',
'validators' => array(
array('NotEmpty', true, array(
'messages' => array(
'isEmpty' => 'You must agree to our terms of service.'
@jonahlyn
jonahlyn / Password Fields
Created April 14, 2011 20:30
Advanced Form Elements for Zend Form
// Password Fields
$password1 = $this->createElement('password', 'password1', array(
'label' => 'Password',
'required' => true,
'validators' => array(
array('StringLength', false, array(
'min' => 4,
'max' => 15,
'messages' => array(
'stringLengthTooShort' => 'Password must be at least 4 characters in length',
@jonahlyn
jonahlyn / combination_example.php
Created April 20, 2011 20:46
Create the same text field for a Zend form in 3 different ways.
// Only some options are passed in the array.
$fullname = $this->createElement('text', 'fullname', array(
'label' => 'Full Name',
'required' => true
));
// Add multiple filters at once by calling the addFilters method.
$fullname->addFilters(array('StringTrim','StripTags'));
// Add multiple validators at once by calling the addValidators method.
@jonahlyn
jonahlyn / multicheckbox.php
Created April 22, 2011 21:22
Custom render a Zend Form MultiCheckbox element with a viewscript
$audience = new Zend_Form_Element_MultiCheckbox('audience', array(
'label' => 'Target Audience',
'required' => true,
'multiOptions' => array(
'students' => 'Students',
'faculty' => 'Faculty',
'staff' => 'Staff',
'stustaf' => 'Student Employees',
'retiree' => 'Emeritus/Retiree'),
'validators' => array(