function content_lock_views_handlers in Content locking (anti-concurrent editing) 7.3
Same name and namespace in other branches
- 6.2 views/content_lock.views.inc \content_lock_views_handlers()
- 6 views/content_lock.views.inc \content_lock_views_handlers()
- 7 views/content_lock.views.inc \content_lock_views_handlers()
- 7.2 views/content_lock.views.inc \content_lock_views_handlers()
Implements hook_views_handlers().
File
- views/
content_lock.views.inc, line 105 - Views integration.
Code
function content_lock_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'content_lock') . '/views',
),
'handlers' => array(
'ContentLockViewsHandlerFieldLocked' => array(
'parent' => 'views_handler_field_boolean',
),
'ContentLockViewsHandlerSortLocked' => array(
'parent' => 'views_handler_sort',
),
'ContentLockViewsHandlerFilterLocked' => array(
'parent' => 'views_handler_filter_boolean_operator',
),
),
);
}