function views_object_types
Same name in other branches
- 7.x-3.x includes/view.inc \views_object_types()
Provide a list of views object types used in a view, with some information about them.
Related topics
29 calls to views_object_types()
- template_preprocess_views_ui_edit_item in includes/
admin.inc - Add information about a section to a display.
- view::destroy in includes/
view.inc - Unset references so that a $view object may be properly garbage collected.
- view::init_handlers in includes/
view.inc - Acquire and attach all of the handlers.
- view::_pre_query in includes/
view.inc - Run the pre_query() on all active handlers.
- views_db_object::add_item in includes/
view.inc - Add an item with a handler to the view.
File
-
includes/
view.inc, line 2397
Code
function views_object_types() {
static $retval = NULL;
// statically cache this so t() doesn't run a bajillion times.
if (!isset($retval)) {
$retval = array(
'field' => array(
'title' => t('Fields'),
// title
'ltitle' => t('fields'),
// lowercase title for mid-sentence
'stitle' => t('Field'),
// singular title
'lstitle' => t('field'),
// singular lowercase title for mid sentence
'plural' => 'fields',
),
'argument' => array(
'title' => t('Arguments'),
'ltitle' => t('arguments'),
'stitle' => t('Argument'),
'lstitle' => t('Argument'),
'plural' => 'arguments',
),
'sort' => array(
'title' => t('Sort criteria'),
'ltitle' => t('sort criteria'),
'stitle' => t('Sort criterion'),
'lstitle' => t('sort criterion'),
'plural' => 'sorts',
),
'filter' => array(
'title' => t('Filters'),
'ltitle' => t('filters'),
'stitle' => t('Filter'),
'lstitle' => t('filter'),
'plural' => 'filters',
'options' => 'views_ui_config_filters_form',
),
'relationship' => array(
'title' => t('Relationships'),
'ltitle' => t('relationships'),
'stitle' => t('Relationship'),
'lstitle' => t('Relationship'),
'plural' => 'relationships',
),
'header' => array(
'title' => t('Header'),
'ltitle' => t('header'),
'stitle' => t('Header'),
'lstitle' => t('Header'),
'plural' => 'header',
'type' => 'area',
),
'footer' => array(
'title' => t('Footer'),
'ltitle' => t('footer'),
'stitle' => t('Footer'),
'lstitle' => t('Footer'),
'plural' => 'footer',
'type' => 'area',
),
'empty' => array(
'title' => t('Empty text'),
'ltitle' => t('empty text'),
'stitle' => t('Empty text'),
'lstitle' => t('Empty text'),
'plural' => 'empty',
'type' => 'area',
),
);
}
return $retval;
}