function taxonomy_image_views_arguments in Taxonomy Image 5
File
- ./
taxonomy_image.module, line 640 - taxonomy_image.module Simple module for providing an association between taxonomy terms and images. Written by Jeremy Andrews <jeremy@kerneltrap.org>, May 2004.
Code
function taxonomy_image_views_arguments() {
$arguments = array(
'taximage' => array(
'name' => t('Taxonomy: Term Image'),
'handler' => 'taxonomy_image_handler_arg_taximg',
'option' => 'string',
'help' => t('The argument will filter by a taxonomy term image.'),
),
);
return $arguments;
}