I still haven’t updated my work, so here’s something in the meantime.
I’ve managed to successfuly integrate RedBean into the CodeIgniter PHP framework. I don’t think any additional explanation is necesary since it’s pretty simple and basic stuff.
Here are the reuired steps:
- Download RedBean and put it into /app/thirdparty/redbean/
- Create a library (/app/libraries/redbean.php). The class shoud be called Redbean, and the __construct() function should look something like this:
$this->ci =& get_instance();
// Include database configuration
include(APPPATH.'/config/database.php');
// Include required files
include(APPPATH.'/thirdparty/redbean/redbean.inc.php');
// Database data
$hostname = $db[$active_group]['hostname'];
$username = $db[$active_group]['username'];
$password = $db[$active_group]['password'];
$database = $db[$active_group]['database'];
// Create RedBean instance
$toolbox = RedBean_Setup::kickstartDev('mysql:host='.$hostname.';dbname='.$database, $username, $password);
$this->ci->rb = $toolbox->getRedBean();
- Your controllers can then do some fun stuff like this:
$post = $this->rb->dispense("post");
$post->title = 'My first post from CodeIgniter';
$post->body ='Lorem ipsum dolor sit amet, consectetur adipisicing elit....';
$post->created = time();
$id = $this->rb->store($post);
Haven’t tested it much but everything seems to work.
If someone has a better sollution just let me know.