Re: Best IDE for CakePHP 2.1

2013-02-04 Thread Serkan Sipahi
best IDE for me is netbeans and in combination with http://plugins.netbeans.org/plugin/44579/php-cakephp-framework is the plugin awesome. The plugin has not autocomplete but other useful features. Von: Jonathan Sundquist jsundqu...@gmail.com An:

Re: What do I need to do to get my plugins accepted on http://plugins.cakephp.org?

2013-02-04 Thread euromark
All packages since June 2012 are on the queue. I already asked the same question a few months ago. As of right now there are probably way more than just yours waiting to be accepted. Am Montag, 4. Februar 2013 00:49:43 UTC+1 schrieb Florian Krämer: I've requested my Cart

Re: Save ID for Associated Table

2013-02-04 Thread Karl Smith
I solved my problem!!! I added this to my controller $this-data['Spreadsheet']['coverage_id'] = $this-Coverage-id; $this-Coverage-Spreadsheet-save($this-data); With that said, the reason I was having so much trouble is because CakePHP doesn't have saving multiple relationships/associations

Re: Multi Tenancy / SaaS

2013-02-04 Thread lowpass
It's ok to design a model that expects User data but you should pass it to the model from the controller. What's TDD? On Sun, Feb 3, 2013 at 9:38 PM, Tony Messias tony...@gmail.com wrote: Well, I believe it's possible to get the authenticated user from anywhere using the AuthComponent::user()

Re: Multi Tenancy / SaaS

2013-02-04 Thread euromark
test driven development Am Montag, 4. Februar 2013 22:56:21 UTC+1 schrieb cricket: It's ok to design a model that expects User data but you should pass it to the model from the controller. What's TDD? On Sun, Feb 3, 2013 at 9:38 PM, Tony Messias ton...@gmail.comjavascript: wrote: