function commerce_file_license_status_options_list in Commerce File 7
Wraps commerce_file_license_status_get_title() for use by the Entity module.
3 calls to commerce_file_license_status_options_list()
- commerce_file_handler_filter_license_status::get_value_options in views/
handlers/ commerce_file_handler_filter_license_status.inc - Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.
- commerce_file_license_form in includes/
commerce_file_license.forms.inc - Form callback: create or edit a license.
- commerce_file_license_issue_by_host_form in includes/
commerce_file_license.forms.inc - Returns the base form array for issuing licenses on a host entity
2 string references to 'commerce_file_license_status_options_list'
File
- includes/
commerce_file.entities.inc, line 599 - Handles file licenses and file license logs
Code
function commerce_file_license_status_options_list() {
return commerce_file_license_status_get_title();
}