By yoda-fr on
Hey there,
I wish anonymous user can post unpublished node so I would like to display only the form of an admin page into a popup (for exemple mysite.com/admin/node/add/nodeType).
I try many things with phptemplate_preprocess_page in template.php but I can't display the page with my template popup (page-popup.tpl.php).
I hope somebody can help me.
Thanks a lot for your attention.
Comments
I found the solution : simply
I found the solution :
simply add a variable to my link (ie : ?pop=TRUE)
and in template.php :
add to phptemplate_preprocess_page function :
if (isset($_GET['pop']) && $_GET['pop']){
$vars['template_file'] = 'page-popup';
}
Hope it can help one day