# |
Feb 8th 2018, 13:00 |
neon1024 |
Inspired by, https://twitter.com/fhinkel/status/958653179889180673 |
# |
Feb 8th 2018, 12:59 |
neon1024 |
The Alf to your Gandalf, if you will :P |
# |
Feb 8th 2018, 12:59 |
neon1024 |
At least, that’s how I understand it. I should say |
# |
Feb 8th 2018, 12:59 |
neon1024 |
The `node_modules` folder is to Node what your `vendors` folder is to Composer |
# |
Feb 8th 2018, 12:56 |
neon1024 |
Because that’s what it’s for ;) |
# |
Feb 8th 2018, 12:56 |
neon1024 |
Nope, I use NPM |
# |
Feb 8th 2018, 12:52 |
birdy247 |
Anyone using node to require node_modules here? |
# |
Feb 8th 2018, 12:47 |
neon1024 |
So it doesn’t seem possible to find associations optionally and sort on the optional association |
# |
Feb 8th 2018, 12:38 |
neon1024 |
Lé sigh. |
# |
Feb 8th 2018, 12:38 |
neon1024 |
Oh, it’s the inverted `notMatching` which I’m using because content is optional |
# |
Feb 8th 2018, 12:35 |
neon1024 |
Ah, nevermind. I have `(Contents.id) IS NULL` in my SQL for some reason |
# |
Feb 8th 2018, 12:32 |
neon1024 |
I’d like to have a paginate sort link for a third level association, but it doesn’t seem to be working. Do I need to specify all the association levels in my `Paginator->sort()` and my `sortWhiteList` ? `'sortWhiteList' => 'ContentAssingments.Contents.modified'` ? |
# |
Feb 8th 2018, 12:13 |
saeideng |
https://github.com/dereuromark/cakephp-shim/blob/master/src/Model/Behavior/NullableBehavior.php |
# |
Feb 8th 2018, 12:12 |
neon1024 |
@saeideng Cool, thanks! |
# |
Feb 8th 2018, 12:11 |
saeideng |
https://github.com/cakephp/cakephp/issues/11499 |
# |
Feb 8th 2018, 12:11 |
saeideng |
@neon1024 |
# |
Feb 8th 2018, 11:42 |
neon1024 |
Guess I’ll knock up a big beforeMarshal method |
# |
Feb 8th 2018, 11:25 |
neon1024 |
Or more a question for the forums? |
# |
Feb 8th 2018, 11:25 |
neon1024 |
Is there a better way to tell the marshaller to not marshall request data where it’s value is empty? With an optional select element, using ‘empty’ I can submit request data with a foreignKey of `''` and the marshaller will fail validation when it tries to create a new entity. This feels like a bug to me, and I’m having to sidestep it by unsetting my request data. I’m sure I’m missing a feature in the core here, anyone know what |
# |
Feb 8th 2018, 10:47 |
h.mavisakalian |
Neo4j for example |
# |
Feb 8th 2018, 10:46 |
h.mavisakalian |
Does anyone have any experience with using cakephp3 with graph databases ? |
# |
Feb 8th 2018, 10:46 |
h.mavisakalian |
Hi all. |
# |
Feb 8th 2018, 10:32 |
neon1024 |
I was missing an ‘associated’ key in my nested array |
# |
Feb 8th 2018, 10:14 |
narendravaghela |
I am facing an issue with https://github.com/FriendsOfCake/cakephp-upload when there is belongsToMany relation beetween models is there any good example on that use case? |
# |
Feb 8th 2018, 10:06 |
dereuromark |
sugitime: can you be more specific? :slightly_smiling_face: |
# |
Feb 8th 2018, 09:55 |
ono-t |
Good Morning! :sunrise: |
# |
Feb 8th 2018, 09:27 |
neon1024 |
I’m trying to figure out why my request data isn’t being marshalled. I’ve setup the ‘associated’ array inside the `patchEntity` call, but for some reason, after the patchEntity, the resulting entity, just has an array and not an entity. Anyone have any ideas how I might debug to find out why the marshal isn’t interested in my data |
# |
Feb 8th 2018, 08:43 |
neon1024 |
Morning all |
# |
Feb 8th 2018, 06:47 |
narendravaghela |
3.x has many changes in structure. |
# |
Feb 8th 2018, 06:47 |
narendravaghela |
:slightly_smiling_face: |
# |
Feb 8th 2018, 06:35 |
sugitime |
wow cakephp 3.5 is terrible compared to 2.0 |
# |
Feb 8th 2018, 06:22 |
mkbkit |
someone know node js ? |
# |
Feb 8th 2018, 06:22 |
mkbkit |
Someone can help me node js |
# |
Feb 8th 2018, 06:18 |
sugitime |
From some quick googling, it looks like there are some session variables set that are required for success, and I should be using $this->Flash->render instead? But all the tutorials on Cakephp show the use of success, so I’m confused. |
# |
Feb 8th 2018, 06:18 |
sugitime |
ill tackle that little thing later on. having another issue with $this->Flash->success; I am getting a 500 error every time I try and call it |
# |
Feb 8th 2018, 06:02 |
narendravaghela |
You can add that in passing class name in options argument of Form->create() |
# |
Feb 8th 2018, 06:01 |
narendravaghela |
By the way, you want to apply CSS class to the form, right? |
# |
Feb 8th 2018, 06:01 |
narendravaghela |
``` $user = $this->Users->newEntity(); ``` |
# |
Feb 8th 2018, 06:01 |
narendravaghela |
In controller, |
# |
Feb 8th 2018, 05:38 |
sugitime |
I tried: $this->Form->create($login[‘class’=>’form-signin’]); but I get errors. same with if I replace $login with $user. but I mean, it sort of makes sense. I never set hte $user variable. can I see the controller code too please? |
# |
Feb 8th 2018, 05:37 |
narendravaghela |
It is connected with User entity |