Skip to content

Instantly share code, notes, and snippets.

@fullybaked
Created July 9, 2015 09:52
Show Gist options
  • Save fullybaked/5c0603b26e9700ea31b6 to your computer and use it in GitHub Desktop.
Save fullybaked/5c0603b26e9700ea31b6 to your computer and use it in GitHub Desktop.
Example
<?php
public function findByFullName($search_term) {
$users->find()
->where(['CONCAT(UserProfiles.first_name, " ", UserProfiles.lastname)' => $search_term]);
->contain(self::$applicant_contain)
->order(['Users.primary_role' => 'DESC', 'Users.modified' => 'DESC'])
->limit(25);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment