function views_handler_argument::uses_breadcrumb

Determine if the argument can generate a breadcrumb.

Return value

bool Indicates whether the argument can generate a breadcrumb.

File

handlers/views_handler_argument.inc, line 167

Class

views_handler_argument
Base class for arguments.

Code

public function uses_breadcrumb() {
    $info = $this->default_actions($this->options['default_action']);
    return !empty($info['breadcrumb']);
}