quick minor path updates (#1968)
[openemr.git] / interface / super / rules / library / RuleFilters.php
blob4472351cefc9c3c288f17f32c186d9037d665cd4
1 <?php
2 // Copyright (C) 2010-2011 Aron Racho <aron@mi-squred.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 /**
10 * Description of RuleFilter
12 * @author aron
14 class RuleFilters
16 var $ruleId;
17 var $criteria = array();
19 function __construct()
23 /**
24 * @param RuleCriteria $criteria
26 function add($criteria)
28 array_push($this->criteria, $criteria);