Skip to content

Instantly share code, notes, and snippets.

@taleeb35
Created November 4, 2014 02:48
Show Gist options
  • Save taleeb35/bcfad75d955f7059a2d1 to your computer and use it in GitHub Desktop.
Save taleeb35/bcfad75d955f7059a2d1 to your computer and use it in GitHub Desktop.
$tasks = $this->Control->find('all', array('conditions' => array(
'owner_id' => $user_id,
'Control.control_frequency_id' => CONTROL_FREQUENCY_WEEKLY,
'OR' => array ('date_last_copied' => "",
'date_last_copied' => Date("Y-m-d", strtotime("-7 days")))
//'date_last_copied' => ""
)));
@Vandervir
Copy link

'OR' => array (
array('date_last_copied' => ""),
array( 'date_last_copied <' => Date("Y-m-d", strtotime("-7 days"))
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment