Log message #4151738

# At Username Text
# Jun 15th 2018, 08:36 josbeir morning !
# Jun 15th 2018, 08:07 neon1024 Morning all
# Jun 15th 2018, 07:47 tunafish When the form is validated the keys are preserverd (since $entity->setErrors() is not called), but when validating entities the indexes are gone
# Jun 15th 2018, 07:47 tunafish Some context: I'm using a Validator which is used by an entity, and by a modelless form
# Jun 15th 2018, 07:40 tunafish So, when validating an array of 3 records and the second has some errors, the output claims the error is on the first record
# Jun 15th 2018, 07:39 tunafish It appears that EntityInterface::setErrors adds the errors with array_merge, which means all numeric indexes are gone
# Jun 15th 2018, 07:38 tunafish Hi guys, has anybody here had some issues with nested validators losing their indexes in the actual error output?
# Jun 15th 2018, 05:40 narendravaghela by the way, good morning all
# Jun 15th 2018, 05:39 narendravaghela @cpierce You should put it in your model as a function where you are making a database query and call that function from your controller action to get the formatted data back.
# Jun 15th 2018, 01:51 cpierce ok so a little more in depth for my question ... i have my recusive loop written now and needed to put it in a function - where should i put it ... assuming in the model but which file and how do i call it?
# Jun 15th 2018, 01:15 ricksaccous no problem
# Jun 15th 2018, 01:15 cpierce thanks @ricksaccous
# Jun 15th 2018, 01:15 cpierce yep that works
# Jun 15th 2018, 01:13 ricksaccous https://book.cakephp.org/3.0/en/core-libraries/collections.html
# Jun 15th 2018, 01:13 cpierce perhaps... let me look
# Jun 15th 2018, 01:13 ricksaccous can collections help?
# Jun 15th 2018, 01:13 cpierce is there a better way?
# Jun 15th 2018, 01:12 cpierce best way i can figure is to pull them indivudally
# Jun 15th 2018, 01:12 cpierce i need to loop through some data pulled form a database and then just keep looping and getting the rows under it ...
# Jun 15th 2018, 01:12 cpierce what would be the proper place to put a recursive function in cakephp3.6?
# Jun 14th 2018, 22:46 rightscoreanalysis if i debug $mainArticle in the view I see count 1
# Jun 14th 2018, 22:45 rightscoreanalysis in my view I am trying $mainArticle->id which doesn't work
# Jun 14th 2018, 22:44 rightscoreanalysis $mainArticle = $articles->take(1);
# Jun 14th 2018, 22:44 rightscoreanalysis If for example I use this in my controller:
# Jun 14th 2018, 22:27 dereuromark it can be useful either way depending on what is needed. so no, not mandatory
# Jun 14th 2018, 22:26 dereuromark the same way, its just an object that can be iterated
# Jun 14th 2018, 22:19 rightscoreanalysis how can I access the data in my view if I don't use toArray
# Jun 14th 2018, 22:15 dereuromark no its not mandatory
# Jun 14th 2018, 22:12 rightscoreanalysis if I am doing a find->all() if is mandatory to call toArray right? This should be done before passing to the view?
# Jun 14th 2018, 21:54 rightscoreanalysis @admad thanks
# Jun 14th 2018, 21:12 squeeze hello all. Is there a way to connect different route is $this->Auth->User setted or not ?
# Jun 14th 2018, 20:54 admad @rightscoreanalysis `$all = find()->all(); $first = $all->take(1); $remaining = $all->skip(1);`
# Jun 14th 2018, 20:04 rightscoreanalysis is there any advantage in passing result object to the view template rather than an array
# Jun 14th 2018, 20:03 rightscoreanalysis thanks
# Jun 14th 2018, 20:01 edgaras.jan oh, use array_shift to get first, array_pop for last
# Jun 14th 2018, 20:00 edgaras.jan `$rows = $query->toArray(); $first = array_pop($rows);`
# Jun 14th 2018, 20:00 edgaras.jan yes
# Jun 14th 2018, 19:59 rightscoreanalysis do i need to call toArray first?
# Jun 14th 2018, 19:59 edgaras.jan `$first = array_pop($rows);`, $rows now contains 2-10
# Jun 14th 2018, 19:58 rightscoreanalysis any suggestion on how to do this, I could use toArray? But can I get the result as an object?
# Jun 14th 2018, 19:57 rightscoreanalysis I am querying my table for 10 results, I want to split the results into different variables. So for example the first row should be passed into one varialb,e row 2-10 into another