15
Quote:
Hi there,
You can embed pageworks pages in other code, by doing something like this:
$page=12;
include XOOPS_ROOT_PATH ."/modules/pageworks/index.php";
So then in Pageworks, you just need to make a page that looks like you want it do. The easiest way to do this might be the displayForm function, but there are other approaches. displayForm might be as simple as this:
displayForm(2);
That would display a blank form 2, with whatever the default permissions and options are for that form. You can control the options through the other parameters.
We are working on some admin pages that will let you specify different versions of a form as different "screens" and then you could access them through the URL with a "screen ID" like this:
http://www.yoursite.com/modules/formulize/index.php?sid=4Screen four could be a blank version of form 2, or a multi-page version of form 2, or a particular saved view from the "list of entries" page.
Anyway, that's for the future, but I hope something here is helpful to you now.
--Julian