# |
Feb 18th 2020, 14:42 |
spriz |
Ah yes, but I expected only the keyField, valueField and the group would be included in the SELECT :) |
# |
Feb 18th 2020, 14:40 |
g.catania |
I’m stuck… |
# |
Feb 18th 2020, 14:39 |
g.catania |
everything works as expected except at that point I’m no longer able to limit my restful actions using resources with ‘map’ options |
# |
Feb 18th 2020, 14:38 |
g.catania |
```$routes->fallbacks(InflectedRoute::class);``` |
# |
Feb 18th 2020, 14:38 |
g.catania |
if I remove $routes->resources(‘’) and put this: |
# |
Feb 18th 2020, 14:37 |
g.catania |
what I’m experiencing though is an error ‘Controller class Api could not be found’ |
# |
Feb 18th 2020, 14:36 |
g.catania |
expected behavior: correctly map my url ‘/api/cocktails’ to controller ‘Cocktails’ declared inside src/Controller/Api/CocktailsController.php |
# |
Feb 18th 2020, 14:35 |
g.catania |
```Router::prefix('api', function ($routes) { $routes->resources('Cocktails'); });``` |
# |
Feb 18th 2020, 14:35 |
g.catania |
Hi there… I’m running cakephp 3.0.x (can’t update it) and I’m experiencing an unexpected behavior in regard of prefix routes. I’m trying to set a prefixed route ‘api’ and inside my callback I’d like to define my resource. My code: |
# |
Feb 18th 2020, 14:19 |
ndm |
Oh well, I guess I worded that rather poorly, it is of course use in the `SELECT` clause, but it's _also_ passed to `Collection::combine()` for formatting the results of the query, where it is expected to be a string, or a callable that returns a string. |
# |
Feb 18th 2020, 14:16 |
spriz |
@ndm Damn! I thought it was actually used in the SELECT ,:) |
# |
Feb 18th 2020, 14:05 |
neon1024 |
Afaik the email takes an array of helpers |
# |
Feb 18th 2020, 14:05 |
neon1024 |
Did you pass it in? |
# |
Feb 18th 2020, 12:54 |
jotpe |
(even if loaded with Plugin Syntax) |
# |
Feb 18th 2020, 12:54 |
jotpe |
Anybody uses https://github.com/lorenzo/cakephp-email-queue and knows how to user helpers in the mail templates? For some reason it didn't find my Plugin Helper |
# |
Feb 18th 2020, 12:40 |
ndm |
It's basically an option that is passed down to `Collection::combine()` |
# |
Feb 18th 2020, 12:40 |
ndm |
No, `valueField` is being evaluated after the query was executed. |
# |
Feb 18th 2020, 12:38 |
val |
Hi, is is possible to use QueryExpression for 'valueField' with `find('list')` in 3.x? |
# |
Feb 18th 2020, 12:28 |
arthurb |
Also dont *debug* things thats not broke :) |
# |
Feb 18th 2020, 12:27 |
arthurb |
*lesson learnt* thank you ! |
# |
Feb 18th 2020, 12:18 |
ndm |
Yup, PHP will abort and kill all database connections, and they will issue rollbacks on all open transactions. |
# |
Feb 18th 2020, 12:16 |
arthurb |
@ndm So if I use `exit` in the calling transaction it kills all of it? |
# |
Feb 18th 2020, 12:12 |
arthurb |
:egg::face_palm: |
# |
Feb 18th 2020, 12:11 |
arthurb |
@ndm It does kill my initial save yes, but thats not the problematic one. But let me try without the exit. |
# |
Feb 18th 2020, 12:09 |
ndm |
@arthurb Could it be that you're in a transaction, and the `exit` kills that? |
# |
Feb 18th 2020, 12:02 |
arthurb |
Was going to add the field to the access list :) |
# |
Feb 18th 2020, 12:02 |
arthurb |
Yeah, I’m also a bit rusty |
# |
Feb 18th 2020, 12:01 |
neon1024 |
My first thought was mark the entity property dirty, but that’s Cake 3 :face_palm: |
# |
Feb 18th 2020, 12:01 |
neon1024 |
@arthurb I’m a bit too rusty with Cake 2 to give any advice, sorry! |
# |
Feb 18th 2020, 11:47 |
arthurb |
There is no emoji for perplexed |
# |
Feb 18th 2020, 11:46 |
slackebot |
crud(this works 100%) The shortened version of the two model files: https://gist.github.com/abarkhuysen/0a7a95b02520566d73662e7461373a71 Any suggestions would be great :) |
# |
Feb 18th 2020, 11:46 |
arthurb |
Hi there, Using Cakephp 2.10 and I’m trying to save a count to a single field. I’m using ClassRegistry to load the model and then pass arg to my function. The $this->save() returns the data array but nothing is saved to the db. There is also no entries in debug.log or error.log. What I have tried so far: 1. Clear the cache 2. Disable validation 3. Create whitelist 4. Specified the data type of my field (int) 5. Edit the record using |
# |
Feb 18th 2020, 11:36 |
lilhermit |
Thanks for your time though |
# |
Feb 18th 2020, 11:35 |
lilhermit |
@conehead No luck with that either going to use the id method |
# |
Feb 18th 2020, 11:13 |
rochasmarcelo |
By the way there is one pull request in the way |
# |
Feb 18th 2020, 11:11 |
lilhermit |
I didn't because I thought that meant it would save the User too. I'll try thanks for your help |
# |
Feb 18th 2020, 11:01 |
conehead |
Did you try using 'associated' ? |
# |
Feb 18th 2020, 11:00 |
conehead |
@lilhermit Although this here says otherwise: https://book.cakephp.org/3/en/orm/saving-data.html#saving-belongsto-associations |
# |
Feb 18th 2020, 10:59 |
kaliel |
@challgren https://gist.github.com/kaliel86/d404aecebccadbee9ba84674081bdc12 |
# |
Feb 18th 2020, 10:58 |
conehead |
When using multiple entities you can set the model directly. I think you cannot do it with a "single entity" like belongsTo |
# |
Feb 18th 2020, 10:57 |
conehead |
So "`awarding_user_id` with `$awarding_user->id` " should be the way to go |