The biggest changes will come in syntax.  This example:

$person = $this->Person->findById($id);
$person['Person']['name'] = 'Bob';
$this->Person->save($person);

will look more like this in Cake 2.0:

$person = $this->Person->findById($id);
$person->name = 'Bob';
$person->save();

So as you can see, some code won't change at all, and what will change
will only get a lot simpler.  Migrating to 2.0 will hopefully be very
straightforward, and involve removing unnecessary code more than
anything.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to