Added the FAQ view.

This commit is contained in:
Loic d'Anterroches
2008-08-02 21:58:00 +02:00
parent 4119a160aa
commit a105f971c2
2 changed files with 36 additions and 0 deletions

View File

@@ -163,4 +163,18 @@ class IDF_Views
'form' => $form),
$request);
}
/**
* FAQ.
*/
public function faq($request, $match)
{
$title = __('Here to Help You!');
return Pluf_Shortcuts_RenderToResponse('faq.html',
array(
'page_title' => $title,
),
$request);
}
}