0byt3m1n1
Path:
/
data
/
applications
/
aps
/
owl
/
1.0-0
/
standard
/
htdocs
/
scripts
/
Ajax
/
Owl
/
[
Home
]
File: getdoctype.php
<?php /** * getdoctype.php * * Author: Steve Bourgeois <owl@bozzit.com> * * Copyright (c) 2006-2009 Bozz IT Consulting Inc * * Licensed under the GNU GPL. For full terms see the file LICENSE. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ require_once(dirname(dirname(dirname(dirname(__FILE__))))."/config/owl.php"); require_once($default->owl_fs_root ."/lib/disp.lib.php"); require_once($default->owl_fs_root ."/lib/owl.lib.php"); require_once($default->owl_fs_root ."/lib/security.lib.php"); if (isset($sess) and (!$sess == 0)) { if (isset($doctype)) { print("<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\">\n"); $sql->query("SELECT * from $default->owl_docfields_table where doc_type_id = '$doctype' order by field_position"); $qFieldLabel = new Owl_DB; $bPrintInitialHeading = true; while ($sql->next_record()) { $qFieldLabel->query("SELECT field_label from $default->owl_docfieldslabel_table where locale = '$language' and doc_field_id='" . $sql->f(id) . "'"); $qFieldLabel->next_record(); if($bPrintInitialHeading) { if ($sql->f("field_position") == 1 and $sql->f("field_type") == "seperator") { print("<tr><td class=\"browse0\" width=\"100%\" colspan=\"2\">" . $qFieldLabel->f("field_label") ."</td></tr>\n"); } else { print("<tr><td class=\"browse0\" width=\"100%\" colspan=\"2\">$owl_lang->doc_specific</td></tr>\n"); } $bPrintInitialHeading = false; } if ($sql->f("required") == "1") { $required = "<font color=red><b> * </b></font>"; } else { $required = "<font color=red><b> </b></font>"; } switch ($sql->f("field_type")) { case "seperator": if ($sql->f("field_position") > 1) { print("<tr><td class=\"browse0\" width=\"100%\" colspan=\"2\">" . $qFieldLabel->f("field_label") ."</td></tr>\n"); } break; case "text": print("<tr><td class=\"form1\">". $qFieldLabel->f("field_label") .":"); print("$required</td>\n"); print("<td class=\"form1\" width=\"100%\">"); print("<input class=\"finput1\" type=\"text\" name=\"" . $sql->f("field_name") . "\" size=\"" . $sql->f("field_size") ."\" value= \"" . $sql->f("field_values") ."\"></input>"); print("</td>\n</tr>\n"); print("</td></tr>"); break; case "picklist": $aPickListValues = array();; $aPickList = array(); $aPickList = split("\|", $sql->f("field_values")); $i = 0; foreach ($aPickList as $sValues) { $aPickListValues[$i][0] = $sValues; $aPickListValues[$i][1] = $sValues; $i++; } fPrintFormSelectBox($qFieldLabel->f("field_label") .": $required", $sql->f("field_name"), $aPickListValues); break; case "mcheckbox": $aMultipleCheckBox = split("\|", $sql->f("field_values")); $i = 0; $iNumberColumns = $sql->f("field_size"); print("<tr><td class=\"browse0\" width=\"100%\" colspan=\"2\">" . $qFieldLabel->f("field_label") ."</td></tr>\n"); print("<tr>\n<td colspan=\"2\">\n<table class=\"form1\" width=\"100%\">\n"); foreach ($aMultipleCheckBox as $sValues) { $iColumnCount = $i % $iNumberColumns; if ($iColumnCount == 0) { print("<tr>\n"); } print("<td class=\"form9\" width=\"1%\">"); print("<input class=\"fcheckbox1\" type=\"checkbox\" name=\"" . $sql->f("field_name") . "_$i\" value=\"".$sValues."\"></input>"); print("</td>\n"); print("<td class=\"form9\">"); print("$sValues"); print("</td>\n"); if ($iCoumnCount == ($iNumberColumns - 1)) { print("</tr>\n"); } $aMultipleCheckBox[$i]= $sValues; $i++; } for ($c = 0; $c < $iNumberColumns - $iCoumnCount - 1; $c++) { print("<td class=\"form9\"> </td>\n"); print("<td class=\"form9\"> </td>\n"); } print("</tr>\n</table>\n"); print("</td>\n</tr>\n"); break; case "radio": $aRadioButtonValues = array(); $aRadioButtons = split("\|", $sql->f("field_values")); $i = 0; foreach ($aRadioButtons as $sValues) { $aRadioButtonValues[$i]= $sValues; $i++; } fPrintFormDoctypeRadio($qFieldLabel->f("field_label") .": $required" , $sql->f("field_name"), "0", $aRadioButtonValues); break; case "textarea": fPrintFormTextArea($qFieldLabel->f("field_label"). ": $required", $sql->f("field_name"), $sql->f("field_values"), $sql->f("field_size")); break; case "checkbox": if($sql->f("field_values")) { $checked = "checked"; } else { $checked = ""; } fPrintFormCheckBox($qFieldLabel->f("field_label"). ": $required", $sql->f("field_name"), $qFieldLabel->f("field_label"), $checked); break; } } if ($sql->num_rows($sql) > 0) { print("<tr><td class=\"browse0\" width=\"100%\" colspan=\"2\"> </td></tr>\n"); } print("</table>\n"); } } ?>
© 2017 -
ZeroByte.ID
.