-
Type:
Improvement
-
Status: Unverified Fix (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.1.1
-
Fix Version/s: 3.1.3-RC1
-
Component/s: Unified Convertor Framework (UCF)
-
Labels:None
-
GitHub Pull Request URL:
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')),
|