daviddeutsch / redbean-joomla
A RedBean Plugin that lets you connect to a joomla database
dev-master
2014-01-01 00:33 UTC
Requires
- daviddeutsch/redbean-prefix: dev-master
- gabordemooij/redbean: >=3.2,<4.0
Suggests
- daviddeutsch/redbean-instance: Let's you have multiple RedBean instances running alongside eachother
This package is not auto-updated.
Last update: 2025-03-29 17:30:26 UTC
README
Takes care of all the instantiation and prefixes you need to have for making RedBean work in Joomla.
Usage
// Include or autoload the files in this library R::ext( 'joomla', array('RedBean_Joomla', 'joomla') ); // Specify 'prefix' for your component prefix R::joomla('prefix'); // If you are juggling components, you may want to go the instance approach: $r2db2 = R::instance(); $r2db2::joomla('prefix', $r2db2);