blob: 74b71511f5e1a97b3e6ae7c80ed46372a32116fe (
plain)
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
|
<?php
/**
* TActiveRecordCriteria class file.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Data\ActiveRecord
*/
namespace Prado\Data\ActiveRecord;
use Prado\Data\DataGateway\TSqlCriteria;
use Prado\Prado;
Prado::using('System.Data.DataGateway.TSqlCriteria');
/**
* Search criteria for Active Record.
*
* Criteria object for active record finder methods. Usage:
* <code>
* $criteria = new TActiveRecordCriteria;
* $criteria->Condition = 'username = :name AND password = :pass';
* $criteria->Parameters[':name'] = 'admin';
* $criteria->Parameters[':pass'] = 'prado';
* $criteria->OrdersBy['level'] = 'desc';
* $criteria->OrdersBy['name'] = 'asc';
* $criteria->Limit = 10;
* $criteria->Offset = 20;
* </code>
*
* @author Wei Zhuo <weizho[at]gmail[dot]com>
* @package Prado\Data\ActiveRecord
* @since 3.1
*/
class TActiveRecordCriteria extends TSqlCriteria
{
}
|