Skip to content

Instantly share code, notes, and snippets.

View interlock's full-sized avatar

June S interlock

  • Vancouver, British Columbia, Canada
View GitHub Profile
@interlock
interlock / Profile.php
Created March 26, 2012 16:02
virtual fields, pagination with conditions on those virtual fields
<?php
class Profile extend AppModel {
var $belongsTo = array('User');
var $virtualFields = array(
'full_name' => 'CONCAT(`Profile`.`first_name`, ' ', `Profile`.`last_name`)'
);