Tagged Questions
2
votes
1answer
27 views
Advice on creating specific data type in CakePHP
I have a model called Company which contains a field called type. Based on that type, I'd like to offer the user a list of checkboxes to select to add more data about their type. To be more specific, ...
0
votes
2answers
59 views
CakePHP 2.4.2: Comments Model Relations-Get Original Post's Title
I have a pretty typical Comment model where Comment belongsto many other models such as Article, Review, Photo, etc and in turn each of those models hasmany Comment. Here is how I built the ...
1
vote
1answer
118 views
Cake php model relationships difficulty, esp. hasMany Through
I apologize in advance... I'm a complete noob to cakephp. As such, I'm having great difficulty in getting my models related correctly. To be more specific, I'm having the most trouble with the ...
0
votes
0answers
78 views
CakePHP CounterCache/CounterScope only updates after parent is updated
I have two models: WebinarAttendee and Webinar
WebinarAttendee has two counters for Webinar: attendees_count for total registered users and attendees_online_count for users watching the webinar now.
...
0
votes
2answers
43 views
Find fights for a fighter in CakePHP
I have two models: Fight and Fighter. My Fight model has two belongsTo relationships:
<?php
class Fight extends AppModel {
public $belongsTo = array(
'FighterA' => array(
...
0
votes
1answer
89 views
CAKEPHP - MSSQL Error When Filtering Records by Distant Association
So I'm a bit stuck on the above and I keep getting an sql server error. Yes I'm using mssql server :| - not my database.
A little background, my relationships concerned look like this:
...
0
votes
0answers
57 views
CakePHP TreeBehavior with two tables
I have two tables "Index" and "Questions". Both has TreeBehavior because both had hierarquical and parent_id inside.
There is a relation between than, the "Questions" table belongsTo "Index" (at the ...
0
votes
2answers
55 views
Table relationship - multiple HABTM or multiple hasMany
I have a table files and it belongs to one either post, article, notion or paragrah. Maybe in the future, there will be more.
What relationship do you suggest to use? Multiple HABTM tables, or ...
0
votes
1answer
554 views
How to use CakePHP 2 find in a hasMany association?
I know this is an old quastion, but I just can't seem to make It work.
I have these relationships:
User hasMany Responsible
Responsible belongsTo User
I need, through my User model, perform a find ...
1
vote
1answer
109 views
Relationships on Cakephp 2.0
I have two models : Absence, Students;
Absence fetch name and absence number from Students, now i want to linking model together, but i have been struggling to figure out how to map those ...
0
votes
1answer
32 views
Cake Relations with diffent name
I got a Table Users and a Table Groups. Every group has one GroupLeader.
So the field i use in is groupLeader ($hasOne) which contains a foreign key of users.
I cant manage to get that relation. So ...
0
votes
1answer
199 views
Displaying fields from a related table in Cakephp
I've a very simple problem with related tables in CakePhp. I've got two tables with a many to many through relationship.
I simply want to display the name of the related object, not it's id.
My ...
1
vote
2answers
134 views
In Cakephp, if I find an object and it returns the “has many” items, how do I gather the objects that those “has many” items belong to?
(look for a practical example below)
Hello all,
I'm attempting to turn this into one query:
Cakephp, being smart as it is, collects all the matching "has many" objects of the item I call a find on ...
0
votes
2answers
57 views
Two relations in one model
Hello
I created the database relation above, as you see one person (staff) can be member of many groups. Every group has a groupleader. How do I manage that relation correctly ?
I'd be thankfull ...
0
votes
2answers
203 views
CakePHP Relationships over more then one Model/Table
I'm new to learning CakePHP. I did the Blog Tutorial and am now trying to add Categories for Posts. I created Category and SubCategory Models and MySQL DB Tables and I related the Models as follows:
...
0
votes
1answer
134 views
CakePHP store array of id's in many-to-many table
I'm having a problem with CakePHP. I try to set some data with the saveAll() function. I json_decode the following JSON string and pass the result to the saveAll() method.
{
"SurveyAnswer":{
...
-1
votes
3answers
616 views
CakePHP: hasMany with join table
I have two models: Store and Review. Users of my site can leave a review on a store. In my database, I have a join table, reviews_stores that associates a review with a store.
How do I link my ...
0
votes
2answers
184 views
CakePHP Search by the count of related table
i need to make a search, filtering by the "COUNT" of a related table, but i cant do this..
Here is the query:
$this->paginate = array
(
'Establishment' => ...
2
votes
1answer
1k views
CakePHP hasOne/belongsTo model relationship
I have a few models I'm trying to relate.
One model is Item, one is Slide, and another is Asset.
Items have multiple slides beneath them. Assets are basically files that have been uploaded (images, ...
0
votes
1answer
261 views
Retrieving SUM(value) FROM a related table
I have a database table, lets say Person and each person has votes stored in a Vote table.
Each person will have many votes and some of these are up and some of these are down votes so I am not ...
0
votes
1answer
59 views
cakePHP and more than one type of relation between same tables
I have two tables - users and stores.
there is a third table - stores_users that should manage the relations (HABTM).
However, a store have a user_id column within it that refers to the owner of the ...
0
votes
2answers
261 views
CakePHP : Multiple hasOne Model Relations
I'm trying to create an application which should help distribute work to employees or volunteers on a irregular time schedule based on their availabilities.
Anyway, here are my models and the ...
0
votes
0answers
102 views
HABTM model saves to database but doesn't appear in data array
i'm using cakephp 1.3. I got really strange issue when saving my HABTM relationship.
Reading here that cakephp doesn't save models automatically more than 2 levels deep, I did the HABTM relationship ...
0
votes
1answer
298 views
belongsTo relationship & filtering in cakePHP
I'm a newbie to cakePHP and I've taken on creating a very small "status reporting" project, that would allow a user to report their current status on a project that they were assigned on.
I'm ...
1
vote
2answers
651 views
cakePHP hasOne relationship not auto completing dropdown field
I'm trying to implement a hasone relationship between 2 models, but I can't have the 'add' form autocomplete with the possible options in the second model (the one that belongsTo the first one). This ...
0
votes
2answers
457 views
Check if it has a related item before deleting in CakePHP
I'd like to check to make sure that before a Venue is deleted, it doesn't have any Events tied to it.
Venue hasMany Event
Event belongsTo Venue
I believe I'd do this in a beforeDelete function in ...
0
votes
1answer
83 views
Cakephp One-way relationship
I have Items and Units, and want each Item to have one Unit, but that unit can be used by many.
Items Table
id - int
name - varchar
description - varchar
unit_id - int
Units ...
2
votes
3answers
2k views
CakePHP Model Relationship with Multiple Foreign Keys
In my CakePHP app I have models for Matches and Teams. Each Match has a home_team_id and an away_team_id, both of which reference a different Team.
In my team.php file, I am able to form the ...
0
votes
1answer
101 views
CakePHP: Unsure how to handle a semi difficult relationship
I'm working on my first CakePHP app, an order/invoice system. The order-part are coming along nicely, but for the invoices I kinda need some help.
The database structure I'm using; A delivery note ...
1
vote
2answers
1k views
CakePHP: Retrieving records based on field in related model
I'm trying to search based on a field in a related model. I can do so with the belongsTo model, but not the hasMany model. I'm sure this is something simple I'm overlooking but I can't see it. Could ...
0
votes
2answers
167 views
cakePhp adding record problem
I have 3 tables:
item {name,id,category_id}
category {id,name,section_id}
sections {id,name}
As you can see, each item is related to a category, and each category is related to a section.
I ...
0
votes
1answer
460 views
Is My CakePHP BelongsTo Relationship Creating Blank Entries?
I have two database tables, Homes and Assets, with a HasMany-BelongsTo relationship.
Until recently, every Asset belonged to one Home. This has become more complex recently: now some Assets belong ...
0
votes
1answer
383 views
How to implement user-friends relationship in cakephp?
I am new to cakephp.
I am working on my Social network project.I am having users and friends relationship
concept.
I am having problem in sending friend request and accepting .....
I am not ...
0
votes
1answer
453 views
cakephp - a different has many through relationship
I was wondering if this is possible to do with a has many through
contents orgs folders
id id id
name name title
link
join table - ...
1
vote
1answer
600 views
HABTM join table with a HABTM relationship
If i have the following database table names in a HTBTM relantionship:
**dressess**
id
**dressess_categories**
id
dress_id
category_id
**categories**
id
How do I have to create the database table ...
0
votes
2answers
110 views
CakePHP - Likes design (Relationship Types)
Im designing a dressess database/table where each user can post/have multiple dressess.
http://book.cakephp.org/view/1040/Relationship-Types
A user can have multiple dressess.
Many dresssess belong ...
1
vote
1answer
248 views
Cakephp HABTM relation
i have theses tables
article , article_currency, currency in database
and i made HABTM between article and currency like this
var $hasAndBelongsToMany = array('currency'=>array('className' ...
0
votes
1answer
1k views
Relationship problem in Cakephp. How to fetch data?
I am trying to make a messages functionality similar to the facebook. Just the message thing and not facebook. A brief descriptions does like this.
1) There are a number of users ( user table) 2) One ...
0
votes
1answer
807 views
CakePHP Relationships - How to setup relationship for message system?
I am trying to make a messages functionality similar to the facebook. Just the message thing and not facebook. A brief descriptions does like this.
1) There are a number of users ( user table)
2) One ...
0
votes
2answers
870 views
cake php use of table relations
Whats the usage of creation relations like
var $belongsTo = array(
'UserType' => array(
'className' => 'UserType',
'foreignKey' => 'user_type_id',
...
2
votes
1answer
793 views
Update hasone relation behaves strangely (cakephp)
I've got an existing Showcase that hasOne Gallery.
The Gallery already exists with the foreignKey showcase_id set to the proper value.
The Gallery has a text field that I try to update via the ...
5
votes
1answer
2k views
Cakephp retrieving HABTM which Conditions
I'm using cakephp and would like to display all Submissions which are part of Category 'X'
I have 4 tables with a HABTM relationship.
Users -> (haveMany) -> Submissions <-> (hasAndBelongsToMany) ...
1
vote
4answers
298 views
Associating a model twice, CakePHP
I have the following scheme: My site is a trivia game, so every Question "hasMany" Answers, but a Question also "hasOne" correct Answer that is also represented by the Answer model.
I have yet to test ...
1
vote
2answers
4k views
cakephp habtm relationship (saving data)
Question related to HABTM has been posted in some good numbers on stackoverflow but I am still looking for a solution to my problem.
I am creating an application that allows for creation of topics ...