I have been using symfony for a few weeks now and I am using the online help a lot but the “Definite Guide To Symfony” seems to be very outdated. For example, I want to use the form helper function like the select_tag() function or the ajax form_remote_tag() function. However, these dont seem to exist anymore and I can only find their names in the deprecatedhelpers file. Does anyone know how I can use these functions? or are there updated names for these that I can use in the newest version of symfony?
Thanks!
There’s no “Definitive Guide to symfony” in “documentation” section since 1.3/1.4 release. Because it really is outdated. If you are newcomer, you should use Practical symfony, The symfony Reference Book and More with symfony as a guide.
Next. You shouldn’t use
select_tag()— use symfony forms instead.And finally,
form_remote_tag()resides insfProtoculousplugin. Just enable him inconfig/ProjectConfiguration.class.php(methodsetup()):et voilà!