You can use Komodo, but netbeans it's the best option just search in
google how to use it

Helpers autoComplete.

just put a dummy.php file on your views root folder.
<?php
    /**
     * @var $this View
     * @var $form FormHelper
     * @property HtmlHelper $Html
     * @property FormHelper $Form
     * @property JsHelper $Js
     * @property JavascriptHelper $Javascript
     * @property PaginatorHelper $Paginator
     * @property RssHelper $Rss
     * @property MediaHelper
$Media
     * @property FacebookHelper
$Facebook
     * @property SeoHelper
$Seo
 
*
 
*/
    class ViewCC extends View
{
    }

    $this = new ViewCC
();


?>

Inside of each view

<?php /* @var $this ViewCC */ ?>

You can create a view template with <?php /* @var $this ViewCC */ ?>
as content to avoid, write this each time

Components

In app_controller.php , add one line for each  used component
    /**
     * @property AuthComponent $Auth
     * @property SessionComponent $Session
     * @property RequestHandlerComponent $RequestHandler
     * @property ConnectComponent $Connect
     */


models

 on each model put this for each related model
    /**
     * @property RelationModelName $RelationModelVar
     */

Controllers

    /**
     * @property ControllerModelName $ControllerModelVar
     */

Just this. you have, all you need in Netbeans,


sorry for the english...

On 14 abr, 18:36, Vinícius Rodrigues <rodrigues...@gmail.com> wrote:
> hi,
>
> i'm looking for an IDE with support for cakephp ... i use netbeans,
> but i searching for most complete IDE.
>
> sorry for the english
>
> thanks

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to