daviddeutsch/redbean-joomla

A RedBean Plugin that lets you connect to a joomla database

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/daviddeutsch/redbean-joomla

dev-master 2014-01-01 00:33 UTC

This package is not auto-updated.

Last update: 2025-10-11 20:36:00 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);