This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%php | |
/* | |
* PHP Snippet | |
* Calculate the first and last day of the current month. | |
*/ | |
$month = date('m'); | |
$year = date('Y'); | |
$last_day = date('t'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Plugin: picViewer | |
* A plugin to test with jsFiddle | |
* and tutorial http://msdn.microsoft.com/en-us/scriptjunkie/ff452703 | |
*/ | |
(function($){ | |
var tabs, gallery, picViewer = $.picViewer = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('a').each(function(){ | |
var linkText = ($('img',this).attr('alt')?$('img',this).attr('alt'):$(this).text()); | |
$(this).trigger('click'); | |
console.log(linkText + ' clicked.'); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('a').each(function(index){$(this).append('|' + $(this).attr('href'));}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--- 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> </p>Dr. Diane Lidke to be honored by the Biophysical Society</em> <p>Albuquerque, NM—March 9, 2011—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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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( |