View of /mambo/branches/4.5.3h/administrator/popups/contentwindow.php
Parent Directory
|
Revision Log
Revision 22 -
(download)
(annotate)
Fri Dec 16 19:02:17 2005 UTC (7 years, 5 months ago) by mambo
File size: 2150 byte(s)
Fri Dec 16 19:02:17 2005 UTC (7 years, 5 months ago) by mambo
File size: 2150 byte(s)
made a copy
<?php /** * @version $Id: contentwindow.php,v 1.1 2005/07/22 03:19:43 eddieajau Exp $ * @package Mambo * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ /** Set flag that this is a parent file */ define( "_VALID_MOS", 1 ); require_once( '../includes/auth.php' ); include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' ); $css = mosGetParam( $_REQUEST, 't', '' ); $iso = split( '=', _ISO ); // xml prolog echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>'; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Content Preview</title> <link rel="stylesheet" href="../../templates/<?php echo $css;?>/css/template_css.css" type="text/css" /> <script> var form = window.opener.document.adminForm var title = form.title.value; var alltext = form.introtext.value; if (form.fulltext) { alltext += form.fulltext.value; } // do the images var temp = new Array(); for (var i=0, n=form.imagelist.options.length; i < n; i++) { value = form.imagelist.options[i].value; parts = value.split( '|' ); temp[i] = '<img src="../../images/stories/' + parts[0] + '" align="' + parts[1] + '" border="' + parts[3] + '" alt="' + parts[2] + '" hspace="6" />'; } var temp2 = alltext.split( '{mosimage}' ); var alltext = temp2[0]; for (var i=0, n=temp2.length-1; i < n; i++) { alltext += temp[i] + temp2[i+1]; } </script> </head> <body style="background-color:#FFFFFF"> <table align="center" width="90%" cellspacing="2" cellpadding="2" border="0"> <tr> <td class="contentheading" colspan="2"><script>document.write(title);</script></td> </tr> <tr> <script>document.write("<td valign=\"top\" height=\"90%\" colspan=\"2\">" + alltext + "</td>");</script> </tr> <tr> <td align="right"><a href="#" onClick="window.close()">Close</a></td> <td align="left"><a href="javascript:;" onClick="window.print(); return false">Print</a></td> </tr> </table> </body> </html>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

