Log message #4032764

# At Username Text
# 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
# May 26th 2017, 11:00 hmic if thats not what you want, you can use a registry to get the instance whenever and whereever you need it. exactly like the table class you get from the tableregistry
# May 26th 2017, 10:59 hmic why every method? if the trait is attached to a class, you can add the instance to that class
# May 26th 2017, 10:59 obinoob available for trait and all the classes that use trait's codes
# May 26th 2017, 10:59 hmic but still: i'd add the functionality to te table, from what you have said.
# May 26th 2017, 10:58 obinoob I just want to have one instance
# May 26th 2017, 10:58 obinoob but I've found I need a new instance in every method on the trait
# May 26th 2017, 10:58 hmic use a registry!
# May 26th 2017, 10:58 hmic and you need a way to access it
# May 26th 2017, 10:58 obinoob the custom class instance is being used in trait
# May 26th 2017, 10:58 hmic so*
# May 26th 2017, 10:57 hmic you have been talking about a trait
# May 26th 2017, 10:57 obinoob I've a trait and a custom class
# May 26th 2017, 10:57 obinoob hmic: I know that
# May 26th 2017, 10:57 hmic a trait is no class
# May 26th 2017, 10:57 hmic or use a dependency injection container (which cake does not in the core IMHO) but there exist plugins for cake that provide you with that functionality too
# May 26th 2017, 10:57 obinoob hmic: I'm using the TableRegistry at my custom class
# May 26th 2017, 10:56 hmic so in your case, you eighter want to utilize this registry pattern - use ones that cake already has
# May 26th 2017, 10:56 obinoob hmic: either by a static method TableRegistry or by calling $this->table
# May 26th 2017, 10:56 hmic through the TableRegistry! this is the most commonly used/exposed registry that cake provides. but there are more. they are globally accessible and provide you with object instances
# May 26th 2017, 10:55 hmic how do you access a table object?
# May 26th 2017, 10:55 hmic think of the tables classes again please