[ Index ]

PHP Cross Reference of Mambo 4.6.5

[ Variables ]     [ Functions ]     [ Classes ]     [ Constants ]     [ Statistics ]

title

Body

[close]

/mambots/editors/mostlyce/jscripts/tiny_mce/filemanager/ -> browser.php (source)

   1  <?php
   2  //Custom MOStlyCE code
   3  require('../../../../../../configuration.php');
   4  require ($mosConfig_absolute_path.'/mambots/editors/mostlyce/jscripts/tiny_mce/auth_check.php');
   5  $result = externalCallCheck($mosConfig_absolute_path, $mosConfig_secret);
   6  if (!$result) {
   7      die('Direct Access to this location is not allowed.');
   8  }
   9  require ($mosConfig_absolute_path.'/mambots/editors/mostlyce/jscripts/tiny_mce/mostlyce_config.php');
  10  //If the Image Manager is not enabled stop them here
  11  if ($editor_plugin_img_mgr!=='true') {
  12      die('Direct Access to this location is not allowed.');
  13  }
  14  //End custom MOStlyCE code
  15  ?>
  16  <!--
  17   * FCKeditor - The text editor for internet
  18   * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  19   * 
  20   * Licensed under the terms of the GNU Lesser General Public License:
  21   *         http://www.opensource.org/licenses/lgpl-license.php
  22   * 
  23   * For further information visit:
  24   *         http://www.fckeditor.net/
  25   * 
  26   * File Name: browser.html
  27   *     This page compose the File Browser dialog frameset.
  28   * 
  29   * File Authors:
  30   *         Frederico Caldeira Knabben (fredck@fckeditor.net)
  31  -->
  32  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  33  <html>
  34      <head>
  35          <title>FCKeditor - Resources Browser</title>
  36          <link href="browser.css" type="text/css" rel="stylesheet">
  37      </head>
  38      <frameset cols="150,*" framespacing="0" bordercolor="#f1f1e3" frameborder="no" class="Frame_none">
  39          <frameset rows="50,*" framespacing="0"  class="Frame_r">
  40              <frame src="frmresourcetype.html" scrolling="no" frameborder="no">
  41              <frame name="frmFolders" id="frmFolders" src="frmfolders.html" scrolling="auto" frameborder="no">
  42          </frameset>
  43          <frameset rows="50,*,50" framespacing="0" class="Frame_none">
  44              <frame name="frmActualFolder" src="frmactualfolder.html" scrolling="no" frameborder="no">
  45              <frame name="frmResourcesList" id="mainWindow" src="frmresourceslist.html" scrolling="auto" frameborder="no">
  46              <frameset cols="150,*,0" framespacing="0" frameborder="no" class="Frame_t">
  47                  <frame name="frmCreateFolder" id="frmCreateFolder" src="frmcreatefolder.html" scrolling="no" frameborder="no">
  48                  <frame name="frmUpload" id="frmUpload" src="frmupload.html" scrolling="no" frameborder="no">
  49                  <frame name="frmUploadWorker" src="" scrolling="no" frameborder="no">
  50              </frameset>
  51          </frameset>
  52      </frameset>
  53  </html>