Log message #4033099

# At Username Text
# May 26th 2017, 20:47 jeremyharris GMSteuart have you tried passing your for into labelOptions when creating the input
# May 26th 2017, 20:40 GMSteuart I am having trouble finding a solution to configuring the 'for' attribute in a html template of mine. I need to be able to set the attribute to the underscore version of the name rather than the hyphenated version. (e.g. instead of for="foo-bar" have for="foo_bar")
# May 26th 2017, 20:32 jeremyharris np
# May 26th 2017, 20:32 HenriqueMachado thanks
# May 26th 2017, 20:32 HenriqueMachado i'll read abou link.. i unknow
# May 26th 2017, 20:32 jeremyharris https://book.cakephp.org/3.0/en/orm/saving-data.html#saving-belongstomany-associations
# May 26th 2017, 20:31 jeremyharris I think you’ll be better off using link() though
# May 26th 2017, 20:31 jeremyharris the second and third param of save() are wrong but that looks closer to what you want
# May 26th 2017, 20:30 HenriqueMachado hehehe
# May 26th 2017, 20:30 HenriqueMachado should be like this? https://pastebin.com/7MyDDKi2
# May 26th 2017, 20:30 jeremyharris I’d suggest going through the new ORM documentation to learn a bit about it, much has changed for the better. You jumped into something pretty complex right off the bat :)
# May 26th 2017, 20:29 HenriqueMachado i see.. i think its working now.. i need to see how to save it now
# May 26th 2017, 20:25 jeremyharris which should be an instance of your UsersTable because you told the association to use that
# May 26th 2017, 20:25 jeremyharris k that’s fine. when you define the association, the first param is the “alias” so to speak, so you access it via $this->Users->Follower
# May 26th 2017, 20:23 HenriqueMachado i have users table and users_followers table, but i dont have a followers table
# May 26th 2017, 20:22 jeremyharris you have a UsersFollowers table? your associations don’t use that table class (though they indeed use the users_followers table itself)
# May 26th 2017, 20:21 HenriqueMachado i've only UserTable and UsersFollowersTable
# May 26th 2017, 20:21 jeremyharris based on your associations, maybe you’re looking for Users->Follower->newEntity
# May 26th 2017, 20:20 cleptric Should be `Users` I guess
# May 26th 2017, 20:19 HenriqueMachado I'm confused with cake3, cake1 was so easy :P
# May 26th 2017, 20:19 HenriqueMachado What i'm doing wrong here? https://pastebin.com/Wg9mh4MH i'M getting: Error: Call to a member function newEntity() on null
# May 26th 2017, 20:06 igreat Please is there anyway I can build the url in a plugin template to link to the webroot of the plugin
# May 26th 2017, 19:59 jeremyharris np
# May 26th 2017, 19:58 HenriqueMachado worked, thanks
# May 26th 2017, 19:57 HenriqueMachado wow
# May 26th 2017, 19:57 jeremyharris capital T
# May 26th 2017, 19:57 jeremyharris joinTable
# May 26th 2017, 19:56 HenriqueMachado any hint?
# May 26th 2017, 19:56 HenriqueMachado argh :/ caking want a table called users_users https://pastebin.com/RF0uLHK0
# May 26th 2017, 19:49 igreat The vendor folder is in my plugin webroot folder
# May 26th 2017, 19:48 igreat Trying to generate a url to a file in my theme. I used `$this->url->build('/vendor/file')` it generates the link, but links it to the webroot of my app and not the plugin
# May 26th 2017, 19:45 igreat Good day guys
# May 26th 2017, 19:43 HenriqueMachado ah.. sure.. thanks
# May 26th 2017, 19:43 jeremyharris HenriqueMachado I believe it was replaced with targetForeignKey
# May 26th 2017, 19:38 HenriqueMachado associationForeignKey was removed on cake3?
# May 26th 2017, 18:56 jeremyharris a better solution might just be saving the raw data and constructing the entities on demand, because what if your validation rules change and suddenly a previously stored entity fails to save?
# May 26th 2017, 18:55 jeremyharris you would store new entities, those are what cake saves as records
# May 26th 2017, 18:55 jeremyharris ok a resultset comes from the DB, not the other way
# May 26th 2017, 18:54 deco without having a previous resultset
# May 26th 2017, 18:53 deco What I want to do is to build a kind of ResultSet Object that I can later save it to the DB. I thought that collections would do this. :slightly_smiling_face:
# May 26th 2017, 18:50 deco Ok. let me put it together...