I'm implementing a cms with multilingual content. i wan to implement
Translate behavior to the model. Actually I've implemented some of the
code but its not what i want.

This is my Post Model

<?php
class Post extends AppModel {
        var $name = 'Post';
        var $displayField = 'title';

        var $actsAs = array('Translate'=>array(
                'title','description'
        ));

}
?>

I want to make a translate link at index view with (Edit , View,
Delete ) link like
 [ Edit | View | Delete | Translate (en | de | np) ]
on clicking any of those translate link it will lead to a page where i
can translate the model's content.Please could u make any suggestion.

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" 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?hl=en

Reply via email to