What are some some of the most scalable Rules engines for CodeIgniter?
Asked
Active
Viewed 547 times
-1
-
Try this one from Swindle. Sounds promising: [http://www.swindle.net/php-rules/](http://www.swindle.net/php-rules/) – Satish Gadhave Jul 18 '12 at 04:23
1 Answers
3
Your question is also far too much of a vague to get any real answers.
I'm not aware of any specifically for CI - it's just a framework.
You would need to design a business rule engine that would fit your requirements and budget etc, and implement it within the CI framework.
Personally (again depending on your situation) I'd just build any rules in to the various models my app may use, given that most business rules are something like:
if($some_condition)
{
$do->something();
}
which would fit quite easily in to a model with minimal effort.

Ross
- 18,117
- 7
- 44
- 64