-
Improvement
-
Resolution: Fixed
-
Minor
-
3.1.1
-
None
Calling a class method in the convertor framework currently requires the verbose use of the 'functionX' syntax. The framework should allow specifying the callable method directly. Thus going from:
array('physical_filename', 'attachments.attachname', array('function1' => array($helper, 'import_attachment'))),
|
To:
array('physical_filename', 'attachments.attachname', array($helper, 'import_attachment')),
|