You are here

function views_system_get_origin_list in Views System 7.4

Same name and namespace in other branches
  1. 8 views_system.module \views_system_get_origin_list()

Helper function to retrieve list of origins.

1 string reference to 'views_system_get_origin_list'
views_system_views_data in views/views_system.views.inc
Implements of hook_views_data().

File

./views_system.module, line 255
Extends the Views module and provides fields, filter criteria, and sort criteria for Modules/Themes/Theme engines.

Code

function views_system_get_origin_list() {
  return array(
    'core' => t('Core'),
    'contributed' => t('Contributed'),
    'custom' => t('Custom'),
  );
}