Delete types

This commit is contained in:
2021-09-13 20:31:56 +06:00
parent f0fa97a2ff
commit e1a4f954fd
80 changed files with 692 additions and 641 deletions

View File

@ -1,6 +1,6 @@
<link href="css/index.php" rel="stylesheet" type="text/css" />
<style type="text/css">
<link href="css/index.php" rel="stylesheet"/>
<style>
div.file{width:<?php echo $this->config['thumbWidth'] ?>px;}
div.file .thumb{width:<?php echo $this->config['thumbWidth'] ?>px;height:<?php echo $this->config['thumbHeight'] ?>px}
</style>
<link href="themes/<?php echo $this->config['theme'] ?>/css.php" rel="stylesheet" type="text/css" />
<link href="themes/<?php echo $this->config['theme'] ?>/css.php" rel="stylesheet" />

View File

@ -1,22 +1,22 @@
<?php
NAMESPACE kcfinder;
?>
<script src="js/index.php" type="text/javascript"></script>
<script src="js_localize.php?lng=<?php echo $this->lang ?>" type="text/javascript"></script>
<script src="js/index.php"></script>
<script src="js_localize.php?lng=<?php echo $this->lang ?>"></script>
<?php
IF ($this->opener['name'] == "tinymce"):
?>
<script src="<?php echo $this->config['_tinyMCEPath'] ?>/tiny_mce_popup.js" type="text/javascript"></script>
<script src="<?php echo $this->config['_tinyMCEPath'] ?>/tiny_mce_popup.js"></script>
<?php
ENDIF;
IF (file_exists("themes/{$this->config['theme']}/js.php")):
?>
<script src="themes/<?php echo $this->config['theme'] ?>/js.php" type="text/javascript"></script>
<script src="themes/<?php echo $this->config['theme'] ?>/js.php"></script>
<?php
ENDIF;
?>
<script type="text/javascript">
<script>
_.version = "<?php echo self::VERSION ?>";
_.support.zip = <?php echo (class_exists('ZipArchive') && !$this->config['denyZipDownload']) ? "true" : "false" ?>;
_.support.check4Update = <?php echo ((!isset($this->config['denyUpdateCheck']) || !$this->config['denyUpdateCheck']) && (ini_get("allow_url_fopen") || function_exists("http_get") || function_exists("curl_init") || function_exists('socket_create'))) ? "true" : "false" ?>;