Skip to content

Instantly share code, notes, and snippets.

@nsanden
Created May 19, 2014 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nsanden/912f5de3625a76ff4663 to your computer and use it in GitHub Desktop.
Save nsanden/912f5de3625a76ff4663 to your computer and use it in GitHub Desktop.
$criteria = new CDbCriteria(array(
'condition' => '`'.$this->orderField.'` > :position' . ($this->condition ? ' AND ' . $this->condition : ''),
'params' => array(':position' => $this->owner->attributes[$this->orderField]),
'order' => '`'.$this->orderField.'`',
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment