function formassembly_entity_property_info_alter in FormAssembly 7
Implements hook_entity_property_info_alter().
File
- ./
formassembly.module, line 54 - Contains hooks implementations and callbacks to non-admin pages.
Code
function formassembly_entity_property_info_alter(&$info) {
$properties =& $info['fa_form']['properties'];
$properties['modified'] = array(
'label' => t("Date changed"),
'type' => 'date',
'schema field' => 'modified',
'description' => t("The date the external data of the entity was last updated."),
);
}