There is a great plugin Drupal 6.x (Drupal Module) for NetBeans. The only negative - it has not been updated in a long time and does not work with the version of NetBeans 6.9.1 and the new NetBeans 7 (which is currently in beta version). Of course Drupal 6 version is not quite relevant and it is time to move to Drupal 7. But anyway, this plugin is still in high demand among the Drupal developers.
So I decided to install it. Downloaded, but installation got error message:
Useful book for Drupal 7: Pro Drupal 7 Development, 3rd Edition - A Guide to Developing content management system to Drupal 7.
About book.
Pro Drupal 7 Development updates the most popular development reference for the newest major release of Drupal. With several new and completely-rewritten essential APIs and improvements in Drupal 7, this book will not only teach developers how to write modules ranging from simple to complex, as well as learn how Drupal itself works.
Learn the Drupal APIs and major changes in Drupal 7
Learn how to write Drupal modules using the APIs
Learn proper development practices and how to become a contributing community member
What you’ll learn
How to get started with writing basic modules
The flexible Drupal APIs and how they interact with modules
How new features in Drupal 7 make modules even more powerful and sophisticated
Best practices when developing in Drupal (coding standards, help developer modules)
How to write safe, secure, and tested code
How to contribute modules back to the Drupal community and maintain their modules using CVS
Who this book is for
This book is for existing Drupal module developers wanting to learn about Drupal 7 and people already knowledgeable in PHP who are interested in developing for Drupal. Simply put, if you are working with Drupal, then you need this book.
NetBeans IDE 7.0 Beta introduces language support for development to the Java SE 7 specification with the JDK 7 platform. The release also provides enhanced integration with the Oracle WebLogic server, as well as support for Oracle Database and GlassFish 3.1.
Additional highlights include Maven 3 and HTML5 editing support; a new GridBagLayout designer for improved Swing GUI development; enhanced support for executing and debugging standalone Java EE applications; and enhancements to the Java editor.
Our final Drupal 7 alpha version was released about three weeks ago. Today, we're proud to announce the first beta version of Drupal 7.x for your further testing and feedback!
The jump between alpha to beta means the following:
We think that we have resolved all critical data loss and security bugs in Drupal 7.
We think that our APIs are now frozen enough so that contributed module and theme authors can start (or pick up again) their #D7CX pledges.
We think that we have caught and fixed most of the problems with the upgrade path. We were able to successfully upgrade a copy of the Drupal.org database to Drupal 7.
That said, we definitely still have some bugs to shake out, and we need your help to find them! Especially new folks who haven't taken Drupal 7 for a spin yet. So please, do so, and let us know what bugs you find in the "Drupal core" issue queue (Please search incoming issues before filing).
Introducing our latest icon set - 2400 Flags. We've created a flag for every major country in the world, plus a few more. And we've created them in several sizes so they'll look great no matter where you're using them - 16x16, 24x24, 32x32, 48x48, and 64x64. We've also provided them in 2 variants - as flat and standard, and with a lovely glossy finish.
Sometimes you want to be available to the whole list of access rights, which are defined in modules Drupal. This list of rights, for example, can be seen on the settings page permissions Drupal (www.example.com/admin/user/permissions).
How do I get such a list? Very simple:
$perms = array();
foreach (module_list(FALSE, FALSE, TRUE) as $module) {
if ($permissions = module_invoke($module, 'perm')) {
asort($permissions);
foreach ($permissions as $perm) {
$perms[] = $perm;
}
}
}
In an array $perms will want us to list of access rights for all modules Drupal.
The NetBeans Team has released NetBeans IDE 6.9.1, with support for the latest JavaFX SDK. Download NetBeans 6.9.1 (A JavaFX-only download bundle is also available.)
NetBeans IDE 6.9.1 is an update to NetBeans IDE 6.9 and includes the following notable changes:
Support for JavaFX 1.3.1
Improvements to the JavaFX Debugger
Integration of the June 2010 and July 2010 patches
Performance improvements
NetBeans IDE 6.9.1 is also available in Simplified Chinese and Japanese.