Documentation is available at RSDEngineDBTemplateFileUpdateArea.php
1 <?php
2 // RSDEngine: The Rapid and Secure Development Engine
3 // Copyright (C) 2003 Lukas Feiler
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19 /**Contains just the class RSDEngineDBTemplateFileUpdateArea.
20 *
21 * @package RSDEngine
22 * @author Lukas Feiler <lukas.feiler@chello.at>
23 * @copyright Lukas Feiler 2003
24 * @filesource
25 */
26
27 /**RSDEngineDBTemplateFileUpdateArea extends RSDEngineTemplateFile.
28 */
29 require_once('RSDEngine/RSDEngineTemplateFile.php');
30
31 /**Generates the smarty template file for updating a LiveUser area.
32 *
33 * @author Lukas Feiler <lukas.feiler@chello.at>
34 * @version 0.1.9
35 * @copyright Lukas Feiler 2003
36 * @package RSDEngine
37 */
38 class RSDEngineDBTemplateFileUpdateArea extends RSDEngineTemplateFile {
39
40 /**Whether to overwrite an existing file.
41 * @var boolean
42 */
43 var $overwriteExisting = false;
44
45 /**Returns the filename.
46 * @return String
47 */
48 function getFilename()
49 {
50 return "update" . ucfirst($this->config['table']->getTableNameWithoutPrefix()) . "Area" . ucfirst($this->config['column']->getColumnNameForVariableName()) . ".tpl";
51 }
52
53 /**Returns the filename of the corresponding controller.
54 * @return String
55 */
56 function getControllerFilename()
57 {
58 return "update" . ucfirst($this->config['table']->getTableNameWithoutPrefix()) . "Area" . ucfirst($this->config['column']->getColumnNameForVariableName()) . ".php";
59 }
60
61 /**Returns the code for the template file for updating a LiveUser area.
62 *
63 * @access private
64 * @return String The code for the file.
65 */
66 function getCode()
67 {
68 extract($this->config);
69 $table =& $this->config['table'];
70 $OPEN = $smartyLeftDelimiter;
71 $CLOSE = $smartyRightDelimiter;
72 $authors = RSArrayUtil::toString(split("\n",$authors),"\n",'* @author %val');
73 $records = ucfirst($this->config['table']->getTableNameWithoutPrefix());
74 $tableInstanceName = $table->getChildClassInstanceName();
75 $appInstanceName = $this->relatedClasses['dbApplicationClass']->getInstanceName();
76 $columnName = $column->name;
77 $columnNameForVariableName = $column->getColumnNameForVariableName();
78 $columnNameForPartialMethodName = $column->getColumnNameForPartialMethodName();
79 $tableNameForVariableName = $table->getTableNameForVariableName();
80
81 $header = $table->getFileOptionProperty('updateTemplate', 'header');
82 $footer = $table->getFileOptionProperty('updateTemplate', 'footer');
83 $write = $table->getFileOptionProperty('updateTemplate', 'write');
84
85 $this->setWrite($write);
86
87 $data = '';
88 if (($primaryKeyColumn = $table->getPrimaryKeyColumn()) === false) {
89 $data .="No primary key was defined! Without a primary key the RSDEngine cannot generate code to update a single record!";
90 return "$data?>";
91 }
92 $primaryKeyColumnNameForVariableName = $primaryKeyColumn->getColumnNameForVariableName();
93
94 $data .= <<<END
95 <html>
96 <head>
97 <title>update $tableNameForVariableName Area $columnNameForVariableName</title>
98 </head>
99 <body>
100 END;;; if ($header) {
101 $data .="{{include file=\"header.tpl\"}}\n";
102 }
103
104 $data .= <<<END
105 ${OPEN}if \$error${CLOSE}
106 <font color="red">An error occured!</font>
107 ${OPEN}/if${CLOSE}
108 <form name="endlosForm" enctype="multipart/form-data" method="POST">
109 <table>
110 ${OPEN}if \$canAddAdminTo${columnNameForPartialMethodName}${CLOSE}
111 <tr>
112 <td>Add admins to area:</td>
113 <td>
114 <select name="addAdminTo${columnNameForPartialMethodName}[]" multiple="true">
115 ${OPEN}html_options options=\$addAdminTo${columnNameForPartialMethodName}Options selected=\$addAdminTo${columnNameForPartialMethodName}Selected${CLOSE}
116 </select>
117 ${OPEN}if \$addAdminTo${columnNameForPartialMethodName}Error${CLOSE}
118 <font color="red"> An error occurred.</font>
119 ${OPEN}/if${CLOSE}
120 </td>
121 </tr>
122 ${OPEN}/if${CLOSE}
123 ${OPEN}if \$canRemoveAdminFrom${columnNameForPartialMethodName}${CLOSE}
124 <tr>
125 <td>Remove admins from area:</td>
126 <td>
127 <select name="removeAdminFrom${columnNameForPartialMethodName}[]" multiple="true">
128 ${OPEN}html_options options=\$removeAdminFrom${columnNameForPartialMethodName}Options selected=\$removeAdminFrom${columnNameForPartialMethodName}Selected${CLOSE}
129 </select>
130 ${OPEN}if \$removeAdminFrom${columnNameForPartialMethodName}Error${CLOSE}
131 <font color="red"> An error occurred.</font>
132 ${OPEN}/if${CLOSE}
133 </td>
134 </tr>
135 ${OPEN}/if${CLOSE}
136 ${OPEN}if \$canUpdate${columnNameForPartialMethodName}NameAndComment${CLOSE}
137 <tr>
138 <td>Area name:</td>
139 <td>
140 <input type="text" name="${columnNameForVariableName}Name" value="${OPEN}\$${columnNameForVariableName}Name${CLOSE}">
141 ${OPEN}if \$update${columnNameForPartialMethodName}NameAndCommentError${CLOSE}
142 <font color="red"> An error occurred.</font>
143 ${OPEN}/if${CLOSE}
144 </td>
145 </tr>
146 <tr>
147 <td>Area comment:</td>
148 <td>
149 <input type="text" name="${columnNameForVariableName}Comment" value="${OPEN}\$${columnNameForVariableName}Comment${CLOSE}">
150 ${OPEN}if \$update${columnNameForPartialMethodName}NameAndCommentError${CLOSE}
151 <font color="red"> An error occurred.</font>
152 ${OPEN}/if${CLOSE}
153 </td>
154 </tr>
155 ${OPEN}/if${CLOSE}
156 <tr>
157 <td></td>
158 <td>
159 <input type="hidden" name="action" value="1">
160 <input type="hidden" name="$primaryKeyColumnNameForVariableName" value="${OPEN}\$$primaryKeyColumnNameForVariableName${CLOSE}">
161 <input type="submit" value="Update">
162 <input type="submit" value="Next >>" name="next">
163 </td>
164 <tr>
165 </table>
166 </form>
167 END;;;
168 if ($footer) {
169 $data .="{{include file=\"footer.tpl\"}}\n";
170 }
171
172 $data .= <<<END
173 </body>
174 </html>
175
176 END;;; return $data;
177 }
178 }
179 ?>
Documentation generated on Mon, 8 Dec 2003 13:12:36 +0100 by phpDocumentor 1.2.3