Skip to content
This repository has been archived by the owner on Nov 24, 2019. It is now read-only.

RafalFilipek/ActiveRecordExtension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

PHP-ActiveRecord Extension

PHP-ActiveRecord Extension provieds easy integration with PHP-ActiveRecord for easy database access.

Parameters

  • ar.class_path - Path to where PHP-ActiveRecord lib folder is located ( without trailing slash )
  • ar.connections - Array of connections (name => connection). Connections examples:
    • mysql://username:password@localhost/database_name
    • pgsql://username:password@localhost/development
    • sqlite://my_database.db
    • oci://username:passsword@localhost/xe
  • ar.default_connection - default models connection.

Installation

cd /path/to/your/project
cd vendor
git clone https://github.com/kla/php-activerecord.git
cd ..
cd Extensions
git clone https://RafalFilipek@github.com/RafalFilipek/ActiveRecordExtension.git
cd ..
mkdir Models

Registering

use Extensions\ActiveRecordExtension\ActiveRecordExtension;

$app['autoloader']->registerNamespace('Extensions', __DIR__);
$app['autoloader']->registerNamespace('Models', __DIR__);
$app->register(new ActiveRecordExtension(),
	array(
		'ar.lib_path'	=> __DIR__.'/vendor/php-activerecord',
		'ar.default_connection' => 'development',
		'ar.connections' => array(
			'development' => 'mysql://username:password@localhost/database_name'
		)
	)
);

Usage

Create your models in Models directory. Eg.

//User.php
namespace Models;
class User extends \ActiveRecord\Model {

}

In your application

use Models\User;

Now you can use User model.

More informations about PHP-ActiveRecord functionality PHP-ActiveRecord Wiki.

Releases

No releases published

Packages

No packages published

Languages