You are here

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'
commerce_file_entity_property_info_alter in ./commerce_file.info.inc
Implements hook_entity_property_info_alter()
commerce_file_rules_action_info in ./commerce_file.rules.inc
Implements hook_rules_action_info().

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();
}