Tuesday, September 21, 2010

Re: cakephp editor

@euromark
what sucks is you have to put the code completion in each file you
intend to use it, I saw your code completion file and it is cool
because it is all in one place.

here is the link to the site where I got the info:
http://www.tiplite.com/cakephp-support-in-netbeans/

The gist is you need (in models as an example)

class Comment extends AppModel {
/**
* code completion block
* Comment belongsTo Post
* @var Post
**/
var $Post;

var $belongsTo = array('Post');

function interactWithPosts() {
//following line will code complete
$this->Comment->Post->find('all');
}

}
On Sep 21, 11:25 am, euromark <dereurom...@googlemail.com> wrote:
> @j.blotus
> ok - i guess its similar to PHPDesigner then
> although i dont know how "intelligent" the auto complete is then
>
> you got a sample of your "mockup" file?
>
> On 21 Sep., 17:00, "j.blotus" <j.blo...@gmail.com> wrote:
>
>
>
> > @euromark I have code completion in CakePHP with netbeans, you just
> > have to provide it with helper docblocs in a few spots and include the
> > source.
>
> > On Sep 21, 9:47 am, euromark <dereurom...@googlemail.com> wrote:
>
> > > i am missing some crucial functionality in netbeans that PHPDesigner
> > > has:
> > > - proper "replace" functionality related to specific subpaths or
> > > "find" for the same matter
> > > - cakephp auto-complete (only the basics covered)
> > > - php functions help/lookup (not working!)
> > > - ...
>
> > > netbeans on the other hand has some more configuration options
> > > and "nice to have" features
>
> > > if somebody would come up with features from both PHPDesigner and
> > > netbeans
> > > it would be the most superb IDE ever
>
> > > On 21 Sep., 04:44, Cruisine <cruisin...@yahoo.co.id> wrote:
>
> > > > i couldn't found the right serial for codelobster for PHP..do u have
> > > > any guys?tq.
>
> > > > On Sep 19, 9:53 pm, John L <confidentia...@gmail.com> wrote:
>
> > > > > Has anyone tried CodeLobster for PHP which has a CakePHP plugin? I am new to
> > > > > CakePHP also and am curious if this is a good IDE to use.
>
> > > > > On Sun, Sep 19, 2010 at 10:44 AM, dhiraj ray <dhiraj.r...@gmail.com> wrote:
> > > > > > i'm new in cake php. i want to know which editor is better for devlop
> > > > > > cakephp sites.
>
> > > > > > Check out the new CakePHP Questions sitehttp://cakeqs.organdhelpothers
> > > > > > 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 cake-php@googlegroups.com
> > > > > > To unsubscribe from this group, send email to
> > > > > > cake-php+unsubscribe@googlegroups.com<cake-php%2Bunsubscr...@googlegroups.c­om>For more options, visit this group at
> > > > > >http://groups.google.com/group/cake-php?hl=en

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 cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: