Displaying Auth Error Messages

July 2nd, 2008

I feel a bit daft posting this because in the end the answer was so easy to find - but maybe it will help somebody else.

I’ve been re-writing my users / groups permission system for CakePHP 1.2 and decided to incorporate as much built in functionality as possible so I’m using the Auth Component - which is great - but one thing kept bugging me, I couldn’t for the life of me figure out how to get the messages from Auth to display in my views - but by debugging I could see they were sitting there right in the Session.

I spent a long time Googling and looking at the API for clues, eventually in desperation I looked at the cookbook (I have no idea why I hadn’t already looked there - as I use it a lot…) and the answer was both very easy and staring me right in the face.

Just pop the following in a view or layout:

1
2
3
4
 
if ($session->check('Message.auth')) {
		$session->flash('auth');
	}

jQuery plugin to print HTML forms

June 3rd, 2008

Recently for a project, a client wanted to be able to print pages from a web application that were just forms. This was never intended when the application was originally built, so there were no separate view screens of data. Naively I thought this would be easy - knock up a print style sheet and bob’s your uncle… if only.

There are a couple of problems that just aren’t really fixable using a pure CSS solution, firstly <select> menus look pretty horrible no matter what you to them and <textarea> fields look fairly bad, but even worse than their aesthetic merits (or lack of rather) is the fact that the overflowing content i.e. the content that you need to scroll to see, will not be printed.

In the end for the application I ended up adding views, but it got me thinking and so I’ve written a quick jQuery plugin to print forms. It works by looking for any <select> menus or <textarea> fields and replacing them with <div> tags styled to look like form elements. When you click on one of the <div>s to edit it, it reverts to the original form element and when it looses the focus (using the jQuery blur() method) the field is swapped back and replaced by the <div>.

When you come to print the form because all of the <select> menus and <textarea> fields have been replaced by <div>s you can style them as you want using a print style sheet and get a nice looking form with no missing content.

Have a look at the working example and view source to see how to use it.

download printform plugin example

You will want to edit / write CSS for both screen and print appropriate to your situation.
Tested on IE6, IE7, Firefox 2.0.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
 
/*
 * printform 1.0
 * By John Elliott (http://www.flipflops.org)
 * Copyright (c) 2008 John Elliott
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/
 
/**
 * convert textareas and select tags to divs so that you HTML forms can be printed.
 *
 *
 *
 * @name printform
 * @type jQuery
 * @author John Elliott (http://www.flipflops.org)
 * @desc 
 * 
 * @example $('#tester').printform();
 * @desc call the plugin on #tester - any select or textareas will be replaced
 *
 * @param settings - not used, but included for future proofing! (I'm sure there will be options sometime...)
 *
*/
 
jQuery.fn.printform = function(settings){
	return this.each(function(){
		new jQuery.printform(this, settings);
	});
}
 
 
 
jQuery.printform = function(obj, settings) {
 
  	/*
  	* within a parent object - replace the textareas and select menus
  	*/
 
 
 	init(obj, 'textarea');
	init(obj, 'select');	
 
 
	function init(obj, fieldType) {
 
	/*
	* loop through each instance of an element within the parent 
	*/
 
		obj = jQuery(obj).attr('id');
 
		jQuery('#' + obj + ' ' + fieldType).each( function() {
 
			var id = jQuery(this).attr('id');
 
			field_replacer(id, fieldType);
		});
	}		
 
 
	function field_replacer(id, fieldType) {
 
	/*
	* function to replace the elements with divs
	*/
 
			str = jQuery('#' + id).val();
			str = str.replace(/\n/g, '<br />');
 
			if ( jQuery('#replace-' + id).length > 0 ) {
				// if a replacement div already exists for this element, then just show it.
				// update the content of the replacer with the edited content
				jQuery('#replace-' + id).html(str).show();			
			} else {
				// otherwise create a new replacement div for the element
				jQuery('#' + id).after('<div class="' + fieldType + '-replace" id="replace-' + id + '">' + str + '</div>');			
			}
 
			jQuery('#' + id).hide(); // hide the element that has just been replaced
			field_watcher(id, fieldType); // add event listeners
	}											
 
	function field_watcher(id,  fieldType) {
 
	/*
	* add listeners to the elements
	* onclick - show the original element and hide the replacer
	* onblur - call the field_replacer to update the page
	*/
 
		jQuery('#replace-' + id).click(function() {
 
		jQuery('#' + id).show().focus();
		jQuery('#replace-' + id).hide();
 
		jQuery('#' + id).blur(function() {
 
			field_replacer(id,  fieldType);								
 
		});
	});
	}
};

Thanks to to Mike Alsup for his great (if rather daunting) guide to writing plugins on Learning jQuery.

Flowers

May 13th, 2008

Finding overlapping dates and times in MySQL

May 1st, 2008

Quite often you end up in situations where you are required to check and see if one time period overlaps another time period. Probably the most common situation this occurs in is when you are building a booking system - be it for tables or cars or rooms.

You have a series of entries in a database with a start (date)time and an end (date)time and before adding a new record you need to check that it doesn’t overlap with another booking.

The solution is fairly simple but I always end up making a quick diagram on a piece of paper to check.

Time overlapping diagram

As you can see two time periods can either be sequential (i.e. there is no overlap at all) or they can overlap in one of four ways. Put this into a diagram and the solution becomes pretty obvious.

There is an overlap if end_time_1 > start_time_2 AND start_time_1 < end_time_2

Time start_1 start_2 end_1 end_2 end_1 > start_2 start_1 < end_2
1 09:00 08:00 11:00 10:00 true true
2 09:00 10:00 11:00 12:00 true true
3 09:00 08:00 11:00 12:00 true true
4 09:00 09:30 11:00 10:30 true true
5 09:00 07:00 11:00 08:00 false true
6 09:00 12:00 11:00 13:00 true false

An example SQL query would be something like the one below but make sure your datetime formats are correct - in MySQL the default format is YYYY-MM-DD hh:mm:ss

 
SELECT * FROM bookings WHERE room_id = '" . $room_id . "' AND ((date_end > '" . $start_date . "') AND (date_start < '" . $end_date . "')) ";

The above query will pull back the records where the times overlap.

blinks.org.uk

April 17th, 2008

Lately I’ve have taken a little bit of time out from Art-Thing and have been working on a smaller side project called www.blinks.org.uk

I’ve been using this as a bit of a test bed for various aspects of Art-Thing but it is also a fun little project in its own right. AND even better it should be ready very soon, it is a directory of UK businesses and services with a pretty flat structure based on tagging and regions. Fast, easy to use and fun (if a business directory can be fun).

The site is almost ready to launch and the whole process from the first ideas until now has been very quick - it is built in CakePHP 1.2 and jQuery which make coding a pleasure again. It’s also fun to do a bit of design for a change instead of just the stuff under the hood.

Here is a sneak preview:

blinks.org.uk

If you own or manage a business in the UK why not sign up for FREE with blinks.org.uk and see how it can help your business.

blinks.org.uk is a brand new directory of businesses and services based in the UK.

Every entry in the directory is approved by a real person and businesses have to provide their actual address so the directory is completely spam free and only contains quality listings.

  • Link back to your website (great for SEO)
  • Add a description of your business or service
  • Add an image or company logo
  • Update your entry whenever you want
  • Add you business or service to multiple categories
  • Add tags (keywords) - that are right just for you
  • Automatically show your location on our map

Finding a business in the UK - made simple

propecia canada order cheap accutane online find no rx levitra order no rx accutane buy discount levitra online order cheap accutane propecia malaysia drug viagra online purchase cheap levitra pharmacy cialis tablet compare propecia prices online order propecia no prescription required viagra viagra online pharmacy purchase accutane buy levitra from canada viagra overnight cialis from canada buy discount levitra viagra in uk propecia online purchase accutane no rx free cialis viagra no online prescription find accutane online levitra approved discount viagra drug viagra levitra in australia buying viagra online levitra internet accutane online order propecia from canada cheap accutane no rx drug cialis order levitra online buy propecia in us levitra australia cialis internet buy cialis overnight delivery cost of levitra cialis in malaysia accutane cheap drug cheap price propecia propecia overnight buy viagra no rx viagra vendors propecia buy online cheapest propecia online best price for viagra accutane no online prescription viagra price discount accutane levitra cost cheapest cialis online find viagra no prescription required propecia overnight delivery viagra free delivery accutane purchase buy cheapest viagra find accutane without prescription buy cheapest viagra on line find propecia on internet propecia drug buy propecia online cheap levitra no online prescription levitra malaysia low cost viagra low cost cialis propecia sales buy discount viagra buy propecia without prescription cheap accutane no prescription best price propecia cheap accutane from uk find propecia order generic cialis cheap propecia without prescription cheap viagra overnight delivery order discount cialis overnight cialis overnight accutane order levitra without prescription order propecia in canada find discount accutane online buy accutane internet cialis cheap drug find cialis on internet online pharmacy cialis buy cialis generic buy cialis on internet propecia medication free accutane order viagra in us order discount propecia online cheapest generic propecia online buy viagra online cheap cheap price levitra cheap cialis overnight delivery discount accutane overnight delivery purchase cialis overnight delivery order viagra no rx buying propecia online cheap cialis online order viagra cheap propecia in canada propecia approved levitra overnight shipping purchase propecia online accutane drug buy accutane overnight delivery cialis drug propecia tablet levitra no rx buy propecia low price compare cialis prices best price viagra buy accutane where to order levitra order levitra on internet no rx accutane order levitra overnight delivery find cheap propecia accutane without prescription buy generic levitra buy discount propecia online find no rx viagra lowest price viagra discount propecia overnight delivery buy cheap propecia online order propecia cheap online viagra for order order cialis from us drug accutane online purchase buy cheap levitra viagra india buy cialis low price buy levitra in us buy viagra from us accutane overnight delivery cheapest generic viagra approved accutane pharmacy cost viagra find levitra without prescription accutane order cheap propecia tablet find no rx accutane purchase accutane overnight delivery buy cheap cialis find accutane viagra without prescription viagra purchase propecia pharmacy levitra in malaysia sale levitra buy discount accutane online order propecia overnight delivery accutane from canada cheapest viagra price cheap accutane pharmacy cheapest accutane cheap viagra in uk cheapest cialis price viagra pharmacy online cialis us levitra bangkok lowest price for propecia cheap cialis in uk viagra no prescription viagra generic online viagra buying cialis generic cialis online lowest price accutane online cialis buy levitra on line drug levitra online purchase accutane tablet accutane india cheap price accutane order propecia without prescription accutane sales order cialis without prescription order viagra no prescription required cheapest cialis accutane us cheap viagra from canada propecia us buy cheap levitra online buy accutane without prescription cheap viagra from usa buy propecia no prescription required cheap propecia from usa propecia tablets cheap viagra in usa levitra canada buy generic propecia online generic levitra fda approved cialis purchase viagra no rx order cialis no prescription discount accutane online cialis buy drug find propecia online buy generic levitra online cialis without a prescription order levitra no rx buy cialis find cheap propecia online buy accutane in us buy cialis internet propecia without rx buy viagra in us buy cheap accutane levitra cheap drug compare levitra prices online cialis online pharmacy lowest price propecia levitra cheapest price buy generic accutane buying generic viagra accutane pharmacy drug propecia order discount levitra buy viagra on internet discount levitra online viagra medication cialis side effects buy discount cialis online buying accutane online order generic levitra propecia sale buy discount accutane order propecia cialis from india order accutane without prescription levitra for sale cheap levitra in canada cheap price cialis viagra australia propecia uk purchase cialis without prescription buy cialis in canada propecia no online prescription cheapest generic viagra online cialis buy online levitra uk no prescription viagra cheap propecia from uk order accutane in us cheap viagra internet buy accutane from india buy cheapest propecia on line buying generic levitra accutane buy drug buy levitra order cheap propecia online cialis without prescription cialis in us cheapest generic propecia cheapest levitra order levitra cheap online sale accutane propecia australia cialis without rx order cheap viagra online cheapest generic accutane viagra buy online find cheap viagra buy viagra no prescription required accutane cost find levitra on internet order cialis overnight delivery online pharmacy levitra order cheap levitra online find cialis no prescription required best price cialis accutane vendors order accutane overnight delivery find cheap levitra online cialis pill propecia no prescription low cost propecia cheap cialis internet cialis online review cheapest levitra online cheap cialis from uk propecia in uk viagra without rx levitra online review accutane side effects lowest price for levitra cialis bangkok buy no rx viagra order accutane from canada buy no rx propecia propecia buy discount propecia online viagra buy propecia rx viagra side effects viagra information accutane online without prescription cialis generic purchase cialis online levitra buy drug accutane pharmacy online accutane buy levitra no rx required propecia without a prescription propecia cheap drug cheap propecia pharmacy tablet accutane approved levitra pharmacy fda approved levitra order levitra from canada find cheap accutane online cheap accutane online buy accutane from us buy accutane online cheap levitra tablets levitra price cheap levitra tablet propecia order buying cialis online accutane pills discount levitra cheapest accutane online find discount cialis online accutane without a prescription buy propecia from us certified viagra buy generic propecia overnight propecia viagra cost buying accutane cost of propecia propecia without prescription buy cheap viagra online sale cialis order discount accutane online accutane free sample order accutane no prescription required cheap cialis from usa accutane overnight shipping buy cheap propecia internet accutane buy accutane low price levitra buy online buying generic accutane cialis no rx required order cialis cheap online buy accutane lowest price cialis in australia free propecia cheap cialis pill cheap accutane without prescription accutane medication levitra rx order levitra from us viagra rx accutane internet levitra for order find viagra accutane overnight buy accutane generic buying levitra buy viagra from canada propecia cheap price buying propecia fda approved accutane pharmacy cialis levitra overnight delivery propecia from canada find cheap viagra online cheapest generic cialis online accutane tablets cheap cialis no rx levitra in uk buy levitra overnight delivery viagra tablets accutane bangkok viagra approved generic accutane cheap levitra no prescription cheap cialis without prescription cheap accutane pill cialis australia tablet propecia buying viagra order accutane no rx purchase levitra online buy cialis online pharmacy levitra cheap accutane cialis pharmacy online cialis for sale order no rx propecia cheapest viagra online cialis overnight shipping cheap accutane on internet cheap cialis order cialis online buy propecia from india find discount viagra no prescription accutane accutane malaysia viagra in bangkok discount viagra online generic levitra cheap online pharmacy propecia cheap accutane tablet viagra cheapest price cialis levitra online without prescription discount propecia without prescription cheap propecia overnight delivery buy cheapest cialis online propecia online review certified propecia online pharmacy viagra viagra overnight shipping best price levitra propecia buy accutane in canada levitra without a prescription levitra sales accutane generic cialis no online prescription viagra in malaysia order cialis no prescription required accutane free delivery order no rx viagra viagra order discount cialis online viagra cheap drug buy cheapest accutane online cheap viagra online levitra online viagra online review order discount propecia viagra internet buy no rx levitra purchase viagra without prescription pharmacy propecia buy viagra in canada propecia in malaysia purchase accutane without prescription cialis overnight delivery no prescription cialis cialis order cialis buy levitra free delivery levitra information buy generic viagra online propecia accutane online review buy generic cialis