A new version of PHP Class Generator has been released with the following improvements:
* added Eclipse Help content for plug-in
* added context Help for Wizard
* added new constant TO_HTMLSTRING for XML template as replacer. Will result in generation of a toHTMLString function when used in template. This function will render a HTML view of the object to be formated using CSS classes
* added simpleTemplate (for stand alone PHP classes to be generated without any dependency to other classes, like database connection providers, includes etc.), defaultTemplate (recommended template to be used with a central database connection DAO) and customTemplate (use your own code template for creating PHP classes, examples can be found on https://sourceforge.net/projects/phpclgenerator/ in the file section) selection in wizard and included new simpleTemplate and defaultTemplate with new function toHTMLString and cleaned code indentation
* code of generated functions is indented using tabs for better readability of generated PHP classes
* table to select database table from will be auto filled if all connection parameters are still set
* "test DB connection and get available tables" will display SQL error message if connection settings are invalid
* added new node "templateinformation" to class template, to allow specification of template version and name, which will be added to the generated php classes to figure out which template has been used to create a php class. E.g. <templateinformation version="1.0" name="PHP class generator simple template" />