Re: Guia Rápido de como atualizar seu projeto em CakePHP pra versão 2.0

2011-10-20 Thread gersonfs
Muito bom o guia! Valeu! On 19 out, 19:23, Thiago Belem wrote: > Pessoal, > > Criei um pequeno guia com alguns passos necessários para você atualizar seu > projeto para a versão 2.0 do nosso querido framework. > > Os passos são baseados numa experiência/tentativa que fiz ontem, sem o uso > de sc

Custom fields in plugins

2013-09-11 Thread gersonfs
Hello everybody! I have several plugins in my central repository that I developed. Are plugins to ease repetitive tasks as system news, product registration, etc.. I have dozens of sites that use these plugins. However, each client has a different need. These needs are reflected in additional

Re: 3.0: a peek into CakePHP's future

2013-09-12 Thread gersonfs
Remove support for named parameters would not be nice to me. I have a lot of code that makes use of this feature. Em quinta-feira, 5 de julho de 2012 23h36min03s UTC-3, José Lorenzo escreveu: > > Since its creation, more than 7 years ago, CakePHP has grown with a life > of its own. Its main g

Re: cake 3 - best practice to develop backend app with one or more frontend apps sharing cake lib

2014-03-28 Thread gersonfs
Hi Alberto, I have this same question. I have several projects that share the same backend app. It would be nice if we had in CakePHP 3 an easier and standardized way to do this. The backend in a separate app facilitates and simplifies the development of frontends. An easy way for projects wi

Migrate from Cake 2.x

2015-05-20 Thread gersonfs
Hello! Is there a way to use the input id attribute from CakePHP 2 in CakePHP 3? Like define a custom method for generate id attribute value? Or better yet, use the FormHelper 2.x version of CakePHP. CakePHP 3 break all my javascript files based on id attribute. I did not see any observations

Re: Migrate from Cake 2.x

2015-05-25 Thread gersonfs
src/View/Helper/IdGeneratorTrait.php > > On Wednesday, May 20, 2015 at 1:39:35 PM UTC+2, gersonfs wrote: >> >> Hello! >> >> Is there a way to use the input id attribute from CakePHP 2 in CakePHP 3? >> Like define a custom method for generate id attribute value? Or better

Re: Migrate from Cake 2.x

2015-05-25 Thread gersonfs
migration of those forms from 2.x to 3.x in general. > The IDs generated in 3.x are too collision-likely for me too. > > Mark > > > Am Mittwoch, 20. Mai 2015 13:39:35 UTC+2 schrieb gersonfs: >> >> Hello! >> >> Is there a way to use the input id attribute

Re: New CakePHP ORM to CakePHP 2.x

2015-09-25 Thread gersonfs
Hello Sulian and José, I have this problem too. Only much bigger. Because of that I have not yet adopted the CakePHP 3. Migrating an application with 300 tables and business rules from CakePHP 2 to 3, it takes a long time, this transition should be possible to be made into parts. I can not st

Domain Layer of the Domain Drive Design and CakePHP

2015-09-25 Thread gersonfs
Hello, Where the domain layer would fit better in a CakePHP APP? Models I believe it would not. It would be a generic PHP Class into a "Lib"? Thanks! -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP --- You received this message because yo

Re: Domain Layer of the Domain Drive Design and CakePHP

2015-09-28 Thread gersonfs
well. For example "ReservationsDomain.php". > > Check the ModelAwareTrait you could create a DomainAware trait that > instantiates the Domains in your controllers as needed and automatically > passes the request object to your domain objects. > > On Friday, September 25