You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							64 lines
						
					
					
						
							2.8 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							64 lines
						
					
					
						
							2.8 KiB
						
					
					
				
								<!--*********************************************************************************
							 | 
						|
								** The contents of this file are subject to the vtiger CRM Public License Version 1.0
							 | 
						|
								 * ("License"); You may not use this file except in compliance with the License
							 | 
						|
								 * The Original Code is:  vtiger CRM Open Source
							 | 
						|
								 * The Initial Developer of the Original Code is vtiger.
							 | 
						|
								 * Portions created by vtiger are Copyright (C) vtiger.
							 | 
						|
								 * All Rights Reserved.
							 | 
						|
								* 
							 | 
						|
								 ********************************************************************************/
							 | 
						|
								-->
							 | 
						|
								<HTML>
							 | 
						|
								<BODY>
							 | 
						|
								<FORM METHOD="post" action="index.php?module=uploads&action=add2db&return_module=<?php echo $_REQUEST['return_module']?>" enctype="multipart/form-data">
							 | 
						|
								  <?php
							 | 
						|
										$ret_action = $_REQUEST['return_action'];
							 | 
						|
										$ret_module = $_REQUEST['return_module']; 
							 | 
						|
										$ret_id = $_REQUEST['return_id'];
							 | 
						|
										$filename = '';
							 | 
						|
										if($_REQUEST['filename'] != '')
							 | 
						|
											$filename = ' [ '.$_REQUEST['filename'].' ] ';
							 | 
						|
										//echo 'Parent action is' .$ret_action;  
							 | 
						|
										//echo 'Ret module is' .$ret_module;
							 | 
						|
										//echo 'Ret id is' .$ret_id;
							 | 
						|
									// echo $ret_module.' : '.$mod_strings['LBL_ATTACH_FILE']; 
							 | 
						|
									echo get_module_title($ret_module,$ret_module." : ".$mod_strings['LBL_ATTACH_FILE'],true); 
							 | 
						|
								?>
							 | 
						|
								  <br>
							 | 
						|
								  <INPUT TYPE="hidden" NAME="MAX_FILE_SIZE" VALUE="1000000">
							 | 
						|
								  <INPUT TYPE="hidden" NAME="return_module" VALUE="<?php echo $ret_module ?>">
							 | 
						|
								  <INPUT TYPE="hidden" NAME="return_action" VALUE="<?php echo $ret_action ?>">
							 | 
						|
								  <INPUT TYPE="hidden" NAME="return_id" VALUE="<?php echo $ret_id ?>">
							 | 
						|
								  <div align="right" style="width:60%"><font class="required">*</font><?php echo $app_strings['NTC_REQUIRED'] ?></div>
							 | 
						|
								  <table width="60%" border="0" cellspacing="0" cellpadding="0" class="formOuterBorder"> 
							 | 
						|
								  <tr> 
							 | 
						|
								    <td class="formSecHeader"> <?php echo $mod_strings['LBL_ATTACH_FILE_INFO'] ?> </td>
							 | 
						|
								  </tr>
							 | 
						|
								  <tr> 
							 | 
						|
								    <td> <TABLE BORDER="0" cellspacing="1" cellpadding="0">
							 | 
						|
								        <TR> 
							 | 
						|
								          <TD class="dataLabel" width="25%"><div align="right"><font class="required">*</font> <?php echo $mod_strings['LBL_FILENAME']; ?> 
							 | 
						|
								            </div></TD>
							 | 
						|
								          <!--TD width="75%"><div align="right"> <?php echo $mod_strings['LBL_FILE']; ?> </div></TD-->
							 | 
						|
								          <TD><INPUT TYPE="file" NAME="binFile">
							 | 
						|
								            <?php echo $filename; ?></TD>
							 | 
						|
								        </TR>
							 | 
						|
								        <TR> 
							 | 
						|
								          <TD class="dataLabel" width="25%" valign="top" ><div align="right"> <?php echo $mod_strings['LBL_DESCRIPTION']; ?> 
							 | 
						|
								            </div></TD>
							 | 
						|
								          <TD width="75%"><TEXTAREA NAME="txtDescription" ROWS="3" COLS="50"></TEXTAREA></TD>
							 | 
						|
								        </TR>
							 | 
						|
								      </table>
							 | 
						|
									</td>
							 | 
						|
								</tr>
							 | 
						|
								</table>
							 | 
						|
								      <br> <table width="60%" cellpadding="0" cellspacing="0" border="0">
							 | 
						|
								        <tr> 
							 | 
						|
								          <td> <div align="center"> 
							 | 
						|
								              <INPUT TYPE="submit" class="button" VALUE="<?php echo $mod_strings['LBL_UPLOAD']; ?>">
							 | 
						|
								            </div></TD>
							 | 
						|
								        </TR>
							 | 
						|
								      </TABLE>
							 | 
						|
								</FORM>
							 | 
						|
								</BODY>
							 | 
						|
								</HTML>
							 | 
						|
								
							 |