I can edit a PHP Class template through 'Tools' > 'Template Manager', and then 'PHP Class' > 'Edit'. My project's framework supports autoloading using namespaces, so i want to automatically add a namespace to the top of the file whenever i create a new 'PHP Class'. How can i do that?

And as a side, how can i find out what variables are available to me in a template?

link|improve this question

62% accept rate
feedback

1 Answer

I remember editing default class template causing some problems and I ended up creating new class template for my needs. You can do it by selecting existing class file and running 'save as template' from context menu

As for available variables:

Variable Name  Description
 name           contains the name of the file that is being created
 user           contains the user name
 nameAndExt     contains the name and extension of the file that is being created
 date           contains text representing the current day like 23. 3. 2007
 time           contains text the current time like 17:18:30
 encoding       the file encoding of the template instance

Useful references:

http://blogs.oracle.com/netbeansphp/entry/how_to_manage_templates_in

http://blogs.oracle.com/netbeansphp/entry/how_to_manage_templates_in1

link|improve this answer
Thank you for those useful links. But none of them contain any information about how to create namespaces – Adil Jul 19 '11 at 12:29
Yepp, we need the directory path of the actual file, but I think netbeans doesn't provide this information :S – inf3rno Sep 13 '11 at 17:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.