Log message #4032593

# At Username Text
# May 26th 2017, 01:41 metoyoko @jeremyharris thanks for response
# May 26th 2017, 01:40 jeremyharris @metoyoko perhaps you’re looking for extending views: https://book.cakephp.org/3.0/en/views.html#extending-views> or, elements: <https://book.cakephp.org/3.0/en/views.html#elements
# May 26th 2017, 01:39 metoyoko hi all, using cakephp 3.4 how to reference additional/another ctp inside default.ctp? because I want to extend my hidden modal. thanks
# May 25th 2017, 23:40 hiromi2424 medel_: not underscore but hyphen
# May 25th 2017, 23:31 jeremyharris bye!
# May 25th 2017, 23:30 obinoob you
# May 25th 2017, 23:30 obinoob ;) see your latter
# May 25th 2017, 23:30 jeremyharris No problem, I'm happy to help!
# May 25th 2017, 23:29 jeremyharris Yowza
# May 25th 2017, 23:27 obinoob need to switch device now bed time and it's about 40ºC
# May 25th 2017, 23:26 obinoob slackebot: jeremyharris you're a nice fellow :) thank you for your patience
# May 25th 2017, 23:26 obinoob I will and the fact that I can't create an unique instance and pass my params drives me a bit crazy I'm self learning person so always looking to find proper answers only rest when I get my answer :)
# May 25th 2017, 23:25 jeremyharris If you need it in the controller, make a getter that just caches the var on first call
# May 25th 2017, 23:24 jeremyharris You don't need out anywhere else, so it's fine :)
# May 25th 2017, 23:24 obinoob slackebot: yes I was doing that but that felt wrong
# May 25th 2017, 23:24 jeremyharris On the trait
# May 25th 2017, 23:23 jeremyharris Make it when you need it
# May 25th 2017, 23:17 obinoob slackebot: not an easy task to me lol
# May 25th 2017, 23:15 obinoob slackebot: where should I create UserData instance?
# May 25th 2017, 23:12 obinoob slackebot: 2) remove AppRules constructor
# May 25th 2017, 23:12 obinoob slackebot: 1) replace Controller constructor by public function initialize() { parent::initialize(); }
# May 25th 2017, 23:10 jeremyharris Then make it a component :P
# May 25th 2017, 23:10 jeremyharris So use initialize instead :) removing the constructor override will help. Then remove the trait constructor and just call a method that sets up the user instead. Problems solved
# May 25th 2017, 23:08 obinoob slackebot: I'm afraid so
# May 25th 2017, 23:08 jeremyharris You're currently overriding it with different parameters than the parent constructor expects, so things will definitely break
# May 25th 2017, 23:07 jeremyharris Maybe forgot to call parent::initialize(). Either way you shouldn't override the constructor if you can help it
# May 25th 2017, 23:06 obinoob slackebot: I jave tried but i raises some error that I don't recall right now...
# May 25th 2017, 23:06 jeremyharris It's better to use initialize() instead.
# May 25th 2017, 23:04 obinoob slackebot: The problem is the same to me I don't get how can i use a constructor in cakephp when it overrides Controller class or other... there are manny things that I'm not ware...
# May 25th 2017, 23:02 jeremyharris But you should really refactor to either a component or lazy load the user when the trait methods need it
# May 25th 2017, 23:01 jeremyharris Call $this->AppRulesConstruct() on the controller constructor
# May 25th 2017, 23:00 obinoob slackebot: I totally agree so who can I solve this issue?
# May 25th 2017, 23:00 jeremyharris That's why _user never gets set
# May 25th 2017, 22:59 jeremyharris You aliased it but don't call that method name that I see
# May 25th 2017, 22:59 jeremyharris The reason you're getting that error is because the trait constructor doesn't get called
# May 25th 2017, 22:58 jeremyharris No the trait
# May 25th 2017, 22:58 obinoob slackebot: You mean the UseData.php class?
# May 25th 2017, 22:57 obinoob slackebot: in slackebot getUserId()
# May 25th 2017, 22:57 jeremyharris Also this should probably be a component as it interacts with the controller layer (other components, the response)
# May 25th 2017, 22:57 obinoob slackebot: https://postimg.org/image/vkktd1f6v/
# May 25th 2017, 22:57 obinoob slackebot: someFunction was just an example