123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <?php
- /**
- * The main GUI for the ImageManager.
- * @author Wei Zhuo
- * @version $Id: manager.php,v 1.4 2006/12/17 14:57:17 thierrybo Exp $
- * @package ImageManager
- */
- require_once('config.inc.php');
- require_once('Classes/ImageManager.php');
-
- $manager = new ImageManager($IMConfig);
- $dirs = $manager->getDirs();
- $var = explode('/',$_GET['base_url_alt']);
- // if the base_url_alt parameter there is a default_course_document we change the allow upload parameter
- if ($var[count($var)-2] == 'default_course_document')
- {
- $IMConfig['allow_upload']=false;
- }
-
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <title>Insert Image</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <link href="assets/manager.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
- /*<![CDATA[*/
- var thumbdir = "<?php echo $IMConfig['thumbnail_dir']; ?>";
- var base_url = "<?php echo $manager->getBaseURL(); ?>";
- var base_url_alt= "<?php echo $_GET['base_url_alt'].'images'; ?>";
- var server_name = "<?php echo $IMConfig['server_name']; ?>";
- window.resizeTo(680, 550);
- if(window.opener.ImageManager && window.opener.ImageManager.I18N)
- {
- I18N = window.opener.ImageManager.I18N;
- }
- // language object not found?
- if (!this.I18N)
- {
- // Read it now - copy in next script block
- document.write('<script type="text/javascript" src="lang/' + window.opener._editor_lang + '.js"><\/script>');
- }
- /*]]>*/
- </script>
- <script type="text/javascript">
- /*<![CDATA[*/
- // now copy the language object of the included script - needed a seperate new script block to be able to do so
- if (!this.I18N)
- {
- I18N = this.ImageManager.I18N;
- }
- /*]]>*/
- </script>
- <script type="text/javascript" src="assets/popup.js"></script>
- <script type="text/javascript" src="assets/dialog.js"></script>
- <script type="text/javascript" src="assets/manager.js"></script>
- </head>
- <body>
- <div class="title">Insert Image</div>
- <form action="images.php" id="uploadForm" method="post" enctype="multipart/form-data">
- <fieldset><legend>Image Manager</legend>
- <div class="dirs">
- <label for="dirPath">Directory</label>
- <select name="dir" class="dirWidth" id="dirPath" onchange="updateDir(this)">
- <option value="/">/</option>
- <?php foreach($dirs as $relative=>$fullpath) { ?>
- <option value="<?php echo rawurlencode($relative); ?>"><?php echo $relative; ?></option>
- <?php } ?>
- </select>
- <a href="#" onclick="javascript: goUpDir();" title="Directory Up"><img src="img/btnFolderUp.gif" height="15" width="15" alt="Directory Up" /></a>
- <?php if($IMConfig['safe_mode'] == false && $IMConfig['allow_new_dir']) { ?>
- <a href="#" onclick="newFolder();" title="New Folder"><img src="img/btnFolderNew.gif" height="15" width="15" alt="New Folder" /></a>
- <?php } ?>
- <div id="messages" style="display: none;"><span id="message"></span><img SRC="img/dots.gif" width="22" height="12" alt="..." /></div>
- <iframe src="images.php" name="imgManager" id="imgManager" class="imageFrame" scrolling="auto" title="Image Selection" frameborder="0"></iframe>
- </div>
- </fieldset>
- <!-- image properties -->
- <table class="inputTable">
- <tr>
- <td align="right"><label for="f_url">Image File</label></td>
- <td><input type="text" id="f_url" class="largelWidth" value="" /></td>
- <td rowspan="3" align="right"> </td>
- <td align="right"><label for="f_width">Width</label></td>
- <td><input type="text" id="f_width" class="smallWidth" value="" onchange="javascript:checkConstrains('width');"/></td>
- <td rowspan="2" align="right"><img src="img/locked.gif" id="imgLock" width="25" height="32" alt="Constrained Proportions" /></td>
- <td rowspan="3" align="right"> </td>
- <td align="right"><label for="f_vert">V Space</label></td>
- <td><input type="text" id="f_vert" class="smallWidth" value="" /></td>
- </tr>
- <tr>
- <td align="right"><label for="f_alt">Alt</label></td>
- <td><input type="text" id="f_alt" class="largelWidth" value="" /></td>
- <td align="right"><label for="f_height">Height</label></td>
- <td><input type="text" id="f_height" class="smallWidth" value="" onchange="javascript:checkConstrains('height');"/></td>
- <td align="right"><label for="f_horiz">H Space</label></td>
- <td><input type="text" id="f_horiz" class="smallWidth" value="" /></td>
- </tr>
- <tr>
- <?php if($IMConfig['allow_upload'] == true) { ?>
- <td align="right"><label for="upload">Upload</label></td>
- <td>
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td><input type="file" name="upload" id="upload"/></td>
- <td> <button type="submit" name="submit" onclick="doUpload();"/>Upload</button></td>
- </tr>
- </table>
- </td>
- <?php } else { ?>
- <td colspan="2"></td>
- <?php } ?>
- <td align="right"><label for="f_align">Align</label></td>
- <td colspan="2">
- <select size="1" id="f_align" title="Positioning of this image">
- <option value="" >Not Set</option>
- <option value="left" >Left</option>
- <option value="right" >Right</option>
- <option value="texttop" >Texttop</option>
- <option value="absmiddle" >Absmiddle</option>
- <option value="baseline" selected="selected" >Baseline</option>
- <option value="absbottom" >Absbottom</option>
- <option value="bottom" >Bottom</option>
- <option value="middle" >Middle</option>
- <option value="top" >Top</option>
- </select>
- </td>
- <td align="right"><label for="f_border">Border</label></td>
- <td><input type="text" id="f_border" class="smallWidth" value="" /></td>
- </tr>
- <tr>
- <?php if (count($IMConfig['maxWidth']) > 1 && $IMConfig['allow_upload']){ ?>
- <td align="right"><label for="uploadSize" style="white-space: nowrap;">Upload Size</label></td>
- <td>
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <select name="uploadSize" id="uploadSize">
- <?php for ($i = 0; $i < count($IMConfig['maxWidth']); $i++){ ?>
- <option value="<?=$i?>"><?=$IMConfig['maxWidth'][$i] . " x " . $IMConfig['maxHeight'][$i]?></option>
- <?php } ?>
- </select>
- </td>
- <td style="padding-left: 5px;">
- (max width x height dimensions)
- </td>
- </tr>
- </table>
- </td>
- <td></td>
- <td align="right">
- <?php }else{ ?>
- <td colspan="4" align="right">
- <?php } ?>
- <input type="hidden" id="orginal_width" />
- <input type="hidden" id="orginal_height" />
- <input type="checkbox" id="constrain_prop" checked="checked" onclick="javascript:toggleConstrains(this);" />
- </td>
- <td colspan="5"><label for="constrain_prop">Constrain Proportions</label></td>
- </tr>
- </table>
- <!--// image properties -->
- <div style="text-align: right;">
- <hr />
- <button type="button" class="buttons" onclick="return refresh();">Refresh</button>
- <button type="button" class="buttons" onclick="return onOK();">OK</button>
- <button type="button" class="buttons" onclick="return onCancel();">Cancel</button>
- </div>
- <input type="hidden" id="f_file" name="f_file" />
- </form>
- </body>
- </html>
|