Log message #4032785

# At Username Text
# May 26th 2017, 12:25 obinoob I also learned that components will not need view components or a build up responses right?
# May 26th 2017, 12:25 hmic probably you are looking for authorization stuff? not validation?
# May 26th 2017, 12:23 obinoob whats my best options to validate an action based on business rules I mean besides the form validation on CRUD, what if I need to verify if user meets requirements before he does something and requirements meet a few validation rules? I'm starting to think that must be a very unique way of doing this or i will end up hacking the framework and thus fighting a lot of concepts...
# May 26th 2017, 12:11 NeoTherm1c|Work Yep
# May 26th 2017, 12:11 inoas https://book.cakephp.org/3.0/en/core-libraries/validation.html#conditional-validation
# May 26th 2017, 12:11 inoas Neon1024: NeoTherm1c|Work this should do the trick shouldnt it
# May 26th 2017, 11:46 inoas okay
# May 26th 2017, 11:46 inoas thought there may be something
# May 26th 2017, 11:45 Neon1024 inoas: I agree with NeoTherm1c|Work
# May 26th 2017, 11:43 obinoob hmic: I've only wrote a component because I've found that I can only validate controller action on crud methods under buildRules, but I can't validate business rules within validation so... now i need to retrieve a response from my component which requires Flash component I'm sure I'm doing something terrible wrong
# May 26th 2017, 11:36 NeoTherm1c|Work custom validation function?
# May 26th 2017, 11:35 inoas on save
# May 26th 2017, 11:35 inoas how do I best validate if field = FOO another field must be BAR
# May 26th 2017, 11:33 hmic so load it there - you can do so from the component scope by accessing the controller it is attached to
# May 26th 2017, 11:33 hmic not the component needs the flashcomponent, but the controller
# May 26th 2017, 11:32 obinoob hmic: I've converted my trait to a component, I need Flash in my new component is that possible? If yes how can I load it?
# May 26th 2017, 11:31 eax Good point! Thanks :)
# May 26th 2017, 11:31 hmic if not, provide a testcase - based on the one thats there - that does and fails
# May 26th 2017, 11:30 hmic you should check the testcase mark has added for the issue and if that fits your case
# May 26th 2017, 11:25 eax That's the "old" issue, which I can still reproduce :)
# May 26th 2017, 11:24 eax hmic: https://github.com/cakephp/cakephp/issues/10633
# May 26th 2017, 11:24 hmic eax: post a link to the issue please
# May 26th 2017, 11:24 eax Thanks! :)
# May 26th 2017, 11:24 hmic of course
# May 26th 2017, 11:23 cleptric Both ^^
# May 26th 2017, 11:23 eax Okay, thanks cleptric! Should I refer to the original issue and pr, or? :)
# May 26th 2017, 11:23 hmic does not need to be in the initialize method
# May 26th 2017, 11:23 hmic obinoob, from any controller context. not from a table context of course where a behavior would get attached
# May 26th 2017, 11:22 obinoob hmic: I think I would have to use initialize method right?
# May 26th 2017, 11:22 cleptric @eax Simply open another issue :slightly_smiling_face:
# May 26th 2017, 11:22 eax rchavik: It is a bit above my level to fix it, sadly :)
# May 26th 2017, 11:22 obinoob hmic yes behaviour stupid observation... how can I load $this->loadComponent('Flash'); in my new component is that possible?
# May 26th 2017, 11:21 rchavik submit a PR that really fix it with a test case :)
# May 26th 2017, 11:17 eax Hey folks! I reported an issue in Cake3 a while back (about 2.5 weeks); which got fixed with a pr that was merged and released in 3.4.7 - However, the solution doesn't actually fix the bug I found :( (In other words, I can still reproduce it in 3.4.7) - What is the correct/most polite way of informing of this? :)
# May 26th 2017, 11:12 hmic you said you are doing sql queries, so i would think it fits the category of a behavior
# May 26th 2017, 11:08 obinoob hmic: ;) so my custom class would fit in category of Helpers I believe...
# May 26th 2017, 11:04 hmic thats the cake way you have asked for
# May 26th 2017, 11:03 hmic with a registry!
# May 26th 2017, 11:03 obinoob hmic: let me expose my ideia with a small code example I think it can clear up things a bit, this is a stupid argument probably but I just want to find a way I can reuse a custom object instance in my code ;)
# May 26th 2017, 11:01 hmic you could easily utilize the generic objectregistry to load and get your custom class when-/whereever
# May 26th 2017, 11:01 hmic there are more registries uses in cake than the tableregistry