PHPActiveRecord is an open source ORM library based on the ActiveRecord pattern. The library was inspired by Ruby on Rails' implementation and therefore borrows many of its conventions and ideas.

learn more… | top users | synonyms

5
votes
5answers
2k views

Get a PHPActiveRecord result as simple array, not array of objects

I would like to have a simple a method, that can give back PHP Activerecord results as simple/associative arrays, not an array of ActiveRecord Objects. In Ruby I believe this is done perhaps with ...
4
votes
2answers
64 views

MySQL - Search a field ignoring spaces

What would be a good way to search a field, ignoring spaces in the search term AND the field? Example: SELECT * FROM tablename WHERE NOSPACES(fieldname) LIKE '%{search term with spaces removed}%' ...
4
votes
1answer
2k views

PHP & Twig : Trouble accessing variables in template

In my controller I am setting the following variables and passing them to the Twig template: $data = $model::all(); // returns object [phpactiverecord] $fields = getFields(); // returns associative ...
2
votes
3answers
557 views

Activerecord-association: create new object (find class)

I have an model with a relation, and I want to instantiate a new object of the relations type. Example: A person has a company, and I have a person-object: now I want to create a ...
2
votes
2answers
669 views

PHP Activerecord: updating array of objects

The following code will return an array of PHP Activerecord Objects: $book = Book::find('all'); Assuming the program is aware of the order of books I can continue and update the attributes of the ...
2
votes
1answer
192 views

Error handling codeigniter and phpactiverecord

I'm new to CodeIgniter and PhpActiverecord and I'm wondering how to best propagate errors from the Model to the Controller when using CI and phpactiverecord. As a simple example consider this: class ...
2
votes
3answers
273 views

has_many through using custom table and field names

I'm using php.activerecord, and I am trying to link tables together. I'm not using their structure, but php.activerecord assumes I am, so it doesn't always work. I'm trying to use it on an already ...
2
votes
3answers
64 views

Iterate over object with private attributes

I'm using PHP with php active record. When i retrieve a record from the database the attributes are listed as private. I need to iterate over the attributes and retrieve the key => value pair. How ...
2
votes
1answer
273 views

Loading conditions that refer to another table - Phpactiverecord

I think I'am hitting a limitation with phpactiverecord, but need clarification: $data = array( 'conditions' => array( 'still_in_contest' => 1, 'contest_month' => ...
2
votes
1answer
1k views

PHP ActiveRecord for PHP < 5.3

I found RoR ActiveRecord very usefull. When I was looking for PHP version, I found this Unfortunately, the use of namespace cause it work only ini PHP > 5.3. Do anyone have alternative that work for ...
1
vote
2answers
179 views

How to update a record using PHPActiveRecord and CodeIgniter?

Im breaking my head here. Hope you can see what's the error. I've installed PHPActiveRecord to CodeIgniter throught a spark and all works great except one thing. Let me show you some code. This is my ...
1
vote
4answers
266 views

php cannot redeclare _autoload()

I getting more indepth with php and I am creating my own mini mvc framework to learn OOP. I have a .htaccess file that redirects everything to the index.php. In the index.php I include a file called ...
1
vote
2answers
106 views

Codeigniter phpActiveRecord Create error

class User extends ActiveRecord\Model { pubic static $primary_key = 'userId'; private function isUserLoggedIn() {} } The error I get: A PHP Error was encountered Severity: Notice ...
1
vote
1answer
441 views

PHP Activerecord array of objects, what next?

Assume the following association among three tables in a database: //working with three tables a client 'has one' business //and a business has many business hours. The following would give ...
1
vote
1answer
112 views

Can krumo() and PHP ActiveRecord work together in CodeIgniter?

UPDATE: Krumo seems to be outdated, and I discovered Kint, which does everything I wanted out of Krumo. I started a CI site that uses PHP ActiveRecord. Please note: PHP ActiveRecord is not the same ...
1
vote
6answers
344 views

PHP ActiveRecord doesn't seem to use my custom attribute

I have a model defined as follows: class User extends ActiveRecord\Model { function get_name() { return $this->first_name . " " . $this->surname; } } however when I show ...
1
vote
1answer
466 views

Twig & PHP ActiveRecord - Cannot access field from join table

I cannot access joined table with PHPActiveRecord/Twig. Here is simplified code. It has two models (Code and User), and each code belongs to one user, so I want to list codes with the name of code's ...
1
vote
1answer
400 views

PHP ActiveRecord - Could not find the association in model

I'm using Codeigniter 2.1.0 along with the spark to enable PHP ActiveRecord and I am unable to create a many to many association through a lookup table. Whenever I load the Event model it fails with ...
1
vote
1answer
152 views

PHP active records in combination with a table with array-like column names

I'm working with PHP Activerecords. I'm trying to make it work with a table that has column names which resemble an array: tablename { id: int, column[1]: text, column[2]: text, ... ...
1
vote
1answer
149 views

php.activerecord does a wildcard not work?

I'm really new to php.activerecord. So bare with my ignorance. Is there a means of doing a wildcard in a query with it? ie: "Some%" and it returns something, someone, somewhat, somewhere... ...
1
vote
1answer
40 views

How to Massive Delete in PHP Activerecord with comparison operators

From this link http://www.phpactiverecord.org/projects/main/wiki/Basic_CRUD I got the following: 6 # MASSIVE DELETE 7 # Model::table()->delete(WhereToDelete); 8 Post::table()->delete(array('id' ...
1
vote
2answers
66 views

LEFT JOIN Association returns unknown column

I am using PHPActiveRecord and CodeIgniter. I am trying to create a blog CMS and a blog has many categories and its referring to another table called blogrefs. So basically blogs => blogrefs => ...
1
vote
0answers
34 views

“Nested” relationships php activerecord?

I'm struggling with relationships in PHPActiveRecord. I have these tables: User_group id, name, ... Seller: id, group_id ... Order: seller_id, id ... And I want to be able to do like ...
1
vote
0answers
171 views

How to add into PHP ActiveRecord has_many association?

When using PHP ActiveRecord and you have models like: class Message extends ActiveRecord\Model { static $belongs_to = array( array("user") ); } class User extends ActiveRecord\Model ...
1
vote
0answers
40 views

Is it possible to setup an EAV structure on PHP ActiveRecord?

What is the best way to link tables in an EAV table structure in PHP ActiveRecord so I can retrieve the entity and all of its attributes/values? The table structure is something like. person ...
1
vote
0answers
121 views

phpactiverecord association through a second table

Ok, I'm hoping to be able to properly explain this, so here goes. I'm using phpActiveRecord and trying to create a specific association through another association. It's not exactly a many to many ...
1
vote
0answers
286 views

PHP ActiveRecord creating a child model via Has_Many association

I'm picking up PHP Active Record and dealing with associations. I have two related objects using a "Has_Many" and "Belongs_to" (parent/child) and trying to create a child record when creating a new ...
0
votes
1answer
282 views

run phpunit of php-activerecord failed

I am trying to test php-activerecord, it has some tests. When run: phpunit sometestname nothing happened. I checked the code, include 'helpers/config.php'; require_once dirname(__FILE__) . ...
0
votes
1answer
109 views

Undefined offset 0 in ActiveRecord/lib/Model.php on line 573

I am using phpactiverecord. We have a table without a primary key and method save() generated this error: Notice: Undefined offset: 0 in /home/vasiliy/sites/api/lib/ActiveRecord/lib/Model.php on line ...
0
votes
2answers
526 views

CodeIgniter2 + Sparks + Php-ActiveRecord troubles with PostgreSql

I'm using CodeIgniter2 + Sparks + PhpActiveRecord, I installed following this tutorial : http://heybigname.com/2011/07/28/codeigniter-2-sparks-php-activerecord-part-1-installation/ with MySql works ...
0
votes
1answer
42 views

Getting the db name or url used from models in php activerecord?

How can I get the database name or url used in my models in php activerecord? I have $connections = array( 'conn1' => 'mysql://user:pass1@localhost/db1;charset=utf8', 'conn2' => ...
0
votes
1answer
121 views

Check Record Set Exists For PHP Active Record

In short, when I pull a record using php activerecord, I'd like to check that it exists before moving forward. There has to be an easier way to do this as each situation seems to be different and I'm ...
0
votes
3answers
766 views

PHP-activerecord - relation has_many (users, groups, users_groups)

I want to do this on my view but it´s not working: <?php echo $user->group->name;?> I have 3 tables - users (id, name) - groups (id, name) - users_groups (id, user_id, group_id) I ...
0
votes
1answer
95 views

Lithium & phpActiveRecord - are my ACL associations correct?

I'm using Lithium with phpActiveRecord using li3_activerecord. It's been a few years since I got back into ORM's and associations and I'm a little confused with my current ACL setup. Here are my ...
0
votes
1answer
31 views

phpactiverecord get the next id

I'm using phpactiverecord. I have an Order object that has an id and code. On database, the id is the primary key int and auto increment. code is a varchar and unique and is composed by the id and ...
0
votes
1answer
67 views

PHP ActiveRecord with bridge tables

I'm trying to build the association between my "homes" table and "furniture" table. Basically, a home can have multiple furniture, so I have a home_furniture_bridge table that looks like this: ...
0
votes
1answer
142 views

Model association with custom table and key names

I'm using php.activerecord, and I am trying to link two tables. I have contacts and contactCompanyLinks. Each contact can contain one or more rows in the link table. The field names in the table ...
0
votes
1answer
154 views

Using sum() sql with php ActiveRecord

I'm using ActiveRecord in my app. I need to add many objects by attribute. Currently I do it as follows: foreach($objects as $object): $result += $object->value; endforeach; But it is very ...
0
votes
1answer
107 views

PHP: How do you create table with active record?

Believe it or not I can not find an answer anywhere, it must be very simple... I installed composer and imported in my project active record in my Test App. Now i am trying to create a table ...
0
votes
1answer
59 views

CI Spark Ion_auth & phpactiverecord

before anything, please understand i'm a complete codeigniter noob, and know only enough php to get by. But understand it really well if it's explained very well. I'm building a web app, installed ...
0
votes
1answer
76 views

how to update add +1 to a field in all of ActiveRecord selected rows

i have a code like this: $ads = Ad::find('all', array('order' => 'select_visits desc', 'limit' => 20, 'conditions'=>array('active = 1'))); i want to update all of $ads, select_visits ...
0
votes
2answers
428 views

PHP Codeigniter + Sparks + php-activerecord how to escape before insert or update data

I'm very new php-activerecord. Is there a way auto escape all of my post/get data before update or insert records? class User extends ActiveRecord\Model {...} class Blog extends MY_Controller { ...
0
votes
1answer
224 views

CRUD - using “call_user_func_array” to create new (php-activerecord)record?

I don't have an environment setup tonight to test this but this question has been nagging away at me all night so apologies. I am using phpactiverecord within my codeigniter framework along with my ...
0
votes
2answers
181 views

Triple level associations in phpactiverecord

Right now if I try to eager load more than two objects deep in phpactiverecord, I get an error. Is something such as this: $conditions['include'] = array( 'playlists' => array('playlist_songs' ...
0
votes
1answer
319 views

php active-record update relationships via mass assignment?

Does anyone know of a workaround within php-activerecord to allow object relationships to update via mass assignment? Loaded object $obj = Model::find(array( ...
0
votes
0answers
24 views

php-activerecord attr_accessible with roles

Rails 3.1 introduced the concept of mass-assignment "roles". The idea is that you can specify different attr_protected and attr_accessible lists for different situations. class User < ...
0
votes
0answers
85 views

Unknown column 'blogcats.id' in 'where clause' ,'ActiveRecord\DatabaseException'

I am trying to refer Blogs table To Blogcats Table through Blogrefs. When i tried to retrieve blogs by a specific category id it returns the following error. Fatal error: Uncaught exception ...
0
votes
1answer
23 views

Passing variables to a has_one relationship in PhpActiveRecord

I'm using phpactiverecord (http://www.phpactiverecord.org/) in a project. I have the below relationship definded. Is there anyway to pass a variable to it so I can change language_id on the fly? ...
0
votes
1answer
42 views

Find by relation in php-activerecord

I'm trying on php-activerecord for a project – I've used it before in Lithium and CodeIgniter – but I am stuck at something that I think should be pretty easy. But I simply can not wrap my head around ...
0
votes
0answers
54 views

php activerecord many to many

I've three models: // student_id student_name Student extends ActiveRecord\Model { static $has_many = array( array('studentcourses') ); } // course_id course_name Course extends ...

1 2