/[drupal]/contributions/modules/pageroute/README.txt
ViewVC logotype

Contents of /contributions/modules/pageroute/README.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.18 - (show annotations) (download)
Tue Apr 24 17:48:40 2007 UTC (2 years, 7 months ago) by fago
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
Changes since 1.17: +18 -12 lines
File MIME type: text/plain
two API changes:
* added a new pagerouteapi hook operation 'boot' which allows customizing page access, have a look at the API documentation for more on this
* changed pageroute_page_arg() to work on $route, instead on  $page.
feature changes:
* overhauled states module integration: used it to optionally verify that a user can only reach the next step, which is ensured through altering page_access. pageroute_nodefamily does now also obey this setting.
1 $Id: README.txt,v 1.17 2007/03/29 18:49:15 fago Exp $
2
3 Pageroute Module
4 ------------------------
5 by Wolfgang Ziegler, nuppla@zites.net
6
7
8 Other documentation files:
9 --------------------------
10 API.txt ... Description of the pageroute API, for developers
11 UPGRADE.txt ... for upgraders from 4.7.x
12
13
14 Short module overview:
15 ---------------------
16 pageroute.module - Allows the creation of pageroutes.
17 pageroute_ui.module - Adminstration pages for pageroute
18
19 Optional:
20 pageroute_nodefamily.module - Still in development
21
22
23 Description
24 -----------
25 The module can be used to provide a user friendly wizard for creating and
26 editing several nodes.
27 You can use the module to create a "route" which leads users through multiple
28 pages, which can be e.g. node creation forms.
29
30 For example this allows you to build a user profile which consists of multiple
31 content types. Then users can easily create and edit their nodes through the
32 same pageroute. (Have a look at the nodeprofile project if you are interested
33 in building user profiles with nodes).
34
35
36 Installation
37 ------------
38 * First install the subform element module, on which pageroute depends:
39 http://drupal.org/project/subform_element
40 * Then copy the whole pageroute directory to your modules directory and
41 activate at least the modules pageroute and pageroute_ui.
42
43
44 Introduction
45 ------------
46
47 Pageroute allows you define a route through various pages. There are several different
48 type of pages available. Pageroute comes with the following page types:
49 * node add form
50 * node edit form
51 * node management page
52 * user edit page
53
54 The node management page allows one to add/edit/delete nodes from a configurable
55 content type. It shows a themeable list of all already created nodes of this type
56 and allows editing and deleting if the user has access.
57
58 For further information regarding the page types have a look at the pageroute_ui
59 help page. Make sure that you have enabled the help module, then go to:
60 http://yoursite.example.com/admin/help/pageroute_ui
61
62 To create or edit your pageroutes activate the pageroute_ui module and go to
63 /admin/build/pageroute. Pageroute will automatically generate a new menu item
64 for each pageroute, which can be customized by using the menu module. Furthermore
65 it creates customizable back/forward buttons at the bottom of each page,
66 so that users are lead through the route.
67
68 Once you have finished defining your route you may deactivate pageroute_ui.module
69 again, as it provides only the adminstration pages.
70
71
72
73 Hints
74 -----
75
76 (*) Pageroute Arguments:
77
78 Each pageroute takes further arguments to its path. Each page type can make use of
79 these arguments, but they need not. Have a look at the page type description to see
80 how it handles the arguments.
81 Page types will interprete the first additional argument as node id, which is used
82 by most node page types, e.g. by the node editing page. The second argument will be
83 interpreted as id of the user for which the route will be gone through. E.g. this
84 will affect the author of new nodes. Furthermore if you pass an id of 0 pageroute
85 will ignore that argument. E.g. you can link to your pageroute by using the path
86 "pageroutepath/4/0" to go through the route as the currently logged in user (id 0)
87 and with the node id 4 as first argument.
88
89 So you can go through the pageroute as another user by appending the user's id to each
90 URL of the route. E.g. if your pageroute has the path 'example' use 'example/0/1'
91 to go through the route as user with the uid 1. Of course you need appropriate
92 permissions if you want to be able to add/edit/delete nodes for other users.
93 In particular this is useful if you are using pageroute for creating nodeprofiles,
94 so that administrators can create/edit profiles of other users.
95
96
97 (*) Using the node display type
98
99 You can build a pageroute to add/edit nodes, where another page is used for viewing
100 the resulting node. For this you need the "node edit form" and "node display" page types:
101 The node edit form page type uses the first argument as node id. The configured
102 node id of the node display page type has to be 0, then it will also use the node
103 id given as argument. So this page will display the node, which has been edited with
104 the node edit form.
105 If the node id argument is missing, the node edit form page type will present a node
106 add form and append the new node id to the next generated path - so the node display
107 page will show the appropriate node!
108
109 (*) Node management pages & nodefamily
110
111 The node management page of a content type obeys the maximum nodefamily population,
112 if the nodefamily module is installed and activated.
113 So you may use the nodefamily module to restrict the number of addable nodes for a
114 content type.
115
116 (*) Nodefamily & Nodeprofiles
117
118 The nodefamily module provides two further page types. Read the nodefamily README
119 for more information. They are useful for building nodeprofiles:
120 http://drupal.org/project/nodeprofile
121
122
123 States Module Integration
124 -------------------------
125 The states module isn't released yet, however there is already pageroute integration
126 available. It will be part of the workflow-ng module package. As long as the workflow-ng
127 module package isn't released, you can find the states module in my sandbox:
128
129 http://cvs.drupal.org/viewcvs/drupal/contributions/sandbox/fago/workflow-ng/
130
131 If the states module is installed, there will be a new option for each route, it's called
132 "Verify that a user goes through each page of the route."
133
134 This will be done with the help of the state machine provided by the states module.
135 This information is used for altering the look of the tab like submit buttons, if activated.
136 So it will be verfied that a user can only reach the next page in a route.
137
138
139 pageroute_nodefamily.module
140 ---------------------------
141 Dependencies: Pageroute Module, Nodefamily (http://drupal.org/project/nodefamily)
142 Suggested: States Module from the Workflow-ng package
143
144 This module is still under development, but it provides already some useful functionality.
145 Currently it might be confusing in particular to unexperienced users, so if you
146 are unexperienced just ignore this module for now.
147
148 Currently this module allows you to associate a pageroute with a content type. Then the
149 associated pageroute will be used for editing nodes of this content type. So if this is
150 useful for you, you can already use this module for that.
151
152 In future this module will create node relations for all nodes created within
153 the pageroute. This way it will build "nodefamilies", families of nodes. The node of
154 the content type associated with the pageroute will be the head of the family, holding
155 all nodes together. Once created, the nodefamily could be edited with the associated pageroute.
156 Currently the module doesn't create any node relations!
157
158
159 If the states module is activated, it will be used for tracking the creation state
160 of the nodefamily. This information is used for altering the look of the tab like
161 submit buttons, as described above. Furthermore it allows you to determine easily
162 if the user has gone through the whole pageroute for this nodefamily, so you know
163 if the nodefamily can be considered complete.
164
165 As long as the workflow-ng module package isn't released, you can find the states
166 module in my sandbox:
167 http://cvs.drupal.org/viewcvs/drupal/contributions/sandbox/fago/workflow-ng/

  ViewVC Help
Powered by ViewVC 1.1.2