0
votes
1answer
41 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
35 views

kohana-activerecord: How to use file Kohana_Auth_Arm which is extending Auth class, when i try to create object of this file seeing error

How to use file Kohana_Auth_Arm which is extending Auth class? As Kohana auth arm class is having all required function, so i want to use it so that there is no need to write these function again. But ...
0
votes
2answers
127 views

switching database php activerecord

I'm using ActiveRecord and I need switching databases. When I log-in I select a database. The databases are the same schema. I tried: $connections = array( '1' => ...
0
votes
3answers
65 views

phpactiverecord: get objects related by condition

I'm using ActiveRecord with a database already exists. I need get all accounts related with a personan with account_type = 'A' so I have: class Person extends ActiveRecord\Model { static $has_many = ...
0
votes
2answers
79 views

PhpActiveRecord: Creating initialize object

I'm using php activerecord. I need initialize a Order object and then set related objects as show below $order = new Order(); Order->_plan = Plan::find(1); I get the error Undefined property: ...
1
vote
2answers
173 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 ...
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 ...
1
vote
6answers
342 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 ...
2
votes
2answers
666 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 ...
1
vote
1answer
440 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 ...
0
votes
1answer
318 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
1answer
228 views

ActiveRecord class association

Let's pretend that we have two tables, Posts and Categories, that have a many to one relationship, one category to many posts. Which would be the best way to go about defining that in the class ...
1
vote
1answer
148 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... ...
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 ...