Skip to content
This repository was archived by the owner on Jan 26, 2018. It is now read-only.
/ MongoCake Public archive

CakePHP 2.0 plugin to bridge with Doctrine MongoDB ODM in order to use models as objects persisted by Doctrine. This changes the original CakePHP feature of returning arrays of results, and instead returns objects wich are cleaner to manage and extend.

Notifications You must be signed in to change notification settings

lorenzo/MongoCake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5916c3e · Jan 27, 2012

History

72 Commits
Aug 14, 2011
Oct 19, 2011
Sep 29, 2011
Jan 27, 2012
Sep 21, 2011
Oct 5, 2011
Aug 5, 2011
May 18, 2011
Sep 4, 2011

Repository files navigation

Installation

Change into your Plugin directory, and checkout the git repo:

cd Plugin
git clone git://github.com/lorenzo/MongoCake.git
cd MongoCake
git submodule update --init --recursive

Configuration

You first need to activate the plugin in CakePHP after placing it in the correct folder:

CakePlugin::load('MongoCake', array('bootstrap' => true));

Use this MongoCake plugin like any other datasource, with its own configuration options:

// Within Config/database.php
public $default = array(
	'datasource' => 'MongoCake.CakeMongoSource',
	'server' => 'localhost', // Optional
	'database' => 'mydatabase', // Database to use
);

Models

Ensure that your models extend the CakeDocument class.

class User extends CakeDocument {
}

About

CakePHP 2.0 plugin to bridge with Doctrine MongoDB ODM in order to use models as objects persisted by Doctrine. This changes the original CakePHP feature of returning arrays of results, and instead returns objects wich are cleaner to manage and extend.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages