Is there any better PHP CRUD code generator?
I want to get Data Access Object, Business Object and Value Object.
It would be difficult to match my needs, but I am happy at least I can get any relevant one.
[EDIT]
I am working on an MVC based application.
I am using my own MVC framework.
I need this code generator to generate codes for MODEL part.
For example Entity Class and Value Objects Currently my codes are like below.
class CustomersDAO
{
public function add() {$CustomersVO}
public function update($CustomersVO) {}
public function delete() {}
public function get() {}
}
class CustomersVO
{
public $id;
public $name;
public $tp;
public $address;
}
class CustomerBO
{
private $id;
private $name;
private $tp;
private $address;
public function getID() {};
public function setID($val) {};
// other getters and setters gos here..
// other business logics
}
http://www.cakephp.org (scaffholding)
http://www.symfony-project.org
http://www.phpscaffold.com
http://www.scriptcase.net
all can generate the basic business logic via command line.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With