In drupal views module, is there any way to access the arguments in the header or footer section?

What i need to do is show a more/[arguement-1] link in the footer section of the view. I've changed the input format to php and I'm stuck as to how to access the views variable.

link|improve this question

33% accept rate
Thank you very mutch ! – user226289 Dec 24 '10 at 8:24
feedback

2 Answers

up vote 4 down vote accepted

Well, if he's using the Views Attach module, the arguments may not necessarily be available in the URL.

However, there is a method for doing this within the Views API. Below I need to access the first argument sent to the View so as to draw information out of the specified node:

$view = views_get_current_view();
$nid = $view->args[0];
$node = node_load($nid);
link|improve this answer
In his case the third line is probably not relevant but +1 for the method. – Jeremy French Nov 10 '09 at 16:29
feedback

If they are URL arguments can't you just use the arg() function?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.