function finder::arguments in Finder 7.2
Finder arguments.
Parameters
$element: The finder element object.
Return value
The array of views arguments.
1 call to finder::arguments()
- finder::views_find in includes/
finder.inc  - Finder views find.
 
File
- includes/
finder.inc, line 1091  - finder.inc
 
Class
- finder
 - An object to contain all of the data to generate a finder, plus the member functions to build the finder, and render the output.
 
Code
function arguments() {
  $variables = array(
    'finder' => $this,
  );
  $string = $this
    ->setting('contextual_filter');
  return finder_get_args($string, $variables);
}