function themekey_views_themekey_properties in ThemeKey 7
Same name and namespace in other branches
- 7.3 modules/themekey.views.inc \themekey_views_themekey_properties()
- 7.2 modules/themekey.views.inc \themekey_views_themekey_properties()
@file themekey.views.inc Provides some views properties
File
- modules/
themekey.views.inc, line 8 - themekey.views.inc Provides some views properties
Code
function themekey_views_themekey_properties() {
// Attributes of properties
$attributes = array();
if (module_exists('views')) {
$attributes['views:vid'] = array(
'description' => t('Views: VID - The vid of a view (vid)'),
'validator' => 'themekey_validator_ctype_digit',
'page cache' => THEMEKEY_PAGECACHE_SUPPORTED,
);
// Mapping functions
$maps = array();
$maps[] = array(
'src' => 'drupal:get_q',
'dst' => 'views:vid',
'callback' => 'themekey_views_vid2getq',
);
$return = array(
'attributes' => $attributes,
'maps' => $maps,
);
}
return $return;
}