views_handler_argument_node_type.inc in Views (for Drupal 7) 6.3
File
modules/node/views_handler_argument_node_type.inc
View source
<?php
class views_handler_argument_node_type extends views_handler_argument_string {
function construct() {
parent::construct('type');
}
function summary_name($data) {
return $this
->node_type($data->{$this->name_alias});
}
function title() {
return $this
->node_type($this->argument);
}
function node_type($type) {
$output = node_get_types('name', $type);
if (empty($output)) {
$output = t('Unknown node type');
}
return check_plain($output);
}
}