What editor to use with Agile Toolkit?

138 Views Asked by At

im totaly new to Agile Toolkit, just put it on my server :)

im looking around, writing some stuff etc, but for begining its really a lot of objects, funcions etc, so it would be nice to load all the stuff in some editor (ultraedit ..) to know what is available in object

Wich tools you use when developing with AT?

Thanks, Peter

3

There are 3 best solutions below

4
On BEST ANSWER

I just tried Zend Studio and is just the thing i was looking for. Just look at this image:

enter image description here

1
On

Try for example "ELRTE". But any Jquery based editor should be okay.

0
On

No editor will help you with this because IDEs actually work only for strong-typed languages. PHP is not such language and dynamic object creating with ATK is even more "dynamic" and unpredictable by IDE.

For example, no editor will "understand" this:

$obj = $this->add('MyCoolObjectClass');
$obj->doSomething();

There is no way editor will understand class of $obj, so it simply can't offer you available attributes and methods of this object.