| [ Index ] |
PHP Cross Reference of Limb3 |
[Summary view] [Print] [Text view]
1 <!-- 2 * FCKeditor - The text editor for internet 3 * Copyright (C) 2003-2006 Frederico Caldeira Knabben 4 * 5 * Licensed under the terms of the GNU Lesser General Public License: 6 * http://www.opensource.org/licenses/lgpl-license.php 7 * 8 * For further information visit: 9 * http://www.fckeditor.net/ 10 * 11 * "Support Open Source software. What about a donation today?" 12 * 13 * File Name: frmresourcetype.html 14 * This page shows the list of available resource types. 15 * 16 * File Authors: 17 * Frederico Caldeira Knabben (fredck@fckeditor.net) 18 --> 19 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 20 <html> 21 <head> 22 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 23 <link href="browser.css" type="text/css" rel="stylesheet" /> 24 <script type="text/javascript" src="/fckeditor/common.js"></script> 25 <script language="javascript"> 26 <!-- 27 function SetResourceType( type ) 28 { 29 window.parent.frames["frmFolders"].SetResourceType( type ) ; 30 } 31 32 var aTypes = [ 33 ['File','File'], 34 ['Image','Image'] 35 ] ; 36 37 window.onload = function() 38 { 39 for ( var i = 0 ; i < aTypes.length ; i++ ) 40 { 41 if ( oConnector.ShowAllTypes || aTypes[i][0] == oConnector.ResourceType ) 42 AddSelectOption( document.getElementById('cmbType'), aTypes[i][1], aTypes[i][0] ) ; 43 } 44 } 45 --> 46 </script> 47 </head> 48 <body bottomMargin="0" topMargin="0"> 49 <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> 50 <tr> 51 <td nowrap> 52 Type<br/> 53 <select id="cmbType" style="WIDTH: 100%" onchange="SetResourceType(this.value);"> 54 </select> 55 </td> 56 </tr> 57 </table> 58 </body> 59 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Sat Nov 22 03:48:54 2008 | Cross-referenced by PHPXref 0.7 |