You are here

function views_system_get_origin_list in Views System 8

Same name and namespace in other branches
  1. 7.4 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_system.views.inc
Implements hook_views_data().

File

./views_system.module, line 168
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'),
    'extension' => t('Extension'),
  );
}