zwischenstand
10
Application/Controller/Admin/TinyFileManager.php
Fichier exécutable
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace VanillaThunder\TinyMCE\Application\Controller\Admin;
|
||||
|
||||
use OxidEsales\Eshop\Core\Registry;
|
||||
|
||||
class TinyFileManager extends \OxidEsales\Eshop\Application\Controller\Admin\AdminController
|
||||
{
|
||||
protected $_sThisTemplate = "tiny/filemanager.tpl";
|
||||
|
||||
}
|
23
Application/Controller/Admin/TinyHelper.php
Fichier exécutable
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
namespace VanillaThunder\TinyMCE\Application\Controller\Admin;
|
||||
|
||||
|
||||
class TinyHelper extends \OxidEsales\Eshop\Application\Controller\Admin\AdminController
|
||||
{
|
||||
protected $_sThisTemplate = "tiny/helper.tpl";
|
||||
|
||||
protected $_errors;
|
||||
protected $_content;
|
||||
|
||||
public function render()
|
||||
{
|
||||
$oOutput = oxRegistry::get("oxOutput");
|
||||
$oOutput->setCharset($this->getCharSet());
|
||||
$oOutput->setOutputFormat(oxOutput::OUTPUT_FORMAT_JSON);
|
||||
$oOutput->sendHeaders();
|
||||
$oOutput->output('errors', $this->_errors);
|
||||
$oOutput->output('content', $this->_content);
|
||||
exit;
|
||||
}
|
||||
|
||||
}
|
6
Application/Core/.ide-helper.php
Fichier exécutable
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace VanillaThunder\TinyMCE\Application\Core;
|
||||
|
||||
|
||||
class_alias(\OxidEsales\EshopCommunity\Core\ViewConfig::class,"VanillaThunder\TinyMCE\Application\Core\ViewConfig_parent");
|
3968
Application/Core/TinyFileManager.php
Fichier exécutable
144
Application/Core/ViewConfig.php
Fichier normal → Fichier exécutable
@ -13,8 +13,16 @@
|
||||
* You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
namespace VanillaThunder\TinymceModule\Application\Core;
|
||||
namespace VanillaThunder\TinyMCE\Application\Core;
|
||||
use \OxidEsales\Eshop\Core\Registry;
|
||||
use OxidEsales\Eshop\Core\UtilsServer;
|
||||
|
||||
/** funtion for adding quotes to config variables
|
||||
* @param $string
|
||||
* @return string
|
||||
*/
|
||||
function q($string) { return '"'.addslashes($string).'"'; }
|
||||
|
||||
/**
|
||||
* ViewConfig class wrapper for TinyMCE module.
|
||||
*
|
||||
@ -25,74 +33,97 @@ class ViewConfig extends ViewConfig_parent
|
||||
public function loadTinyMce()
|
||||
{
|
||||
$cfg = Registry::getConfig();
|
||||
$oLang = Registry::getLang();
|
||||
if (!in_array($this->getActiveClassName(), $cfg->getConfigParam("aTinyMCE_classes"))) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$aPlainCmsPages = $cfg->getConfigParam("aTinyMCE_plaincms");
|
||||
// is tinymce enabled for current controller?
|
||||
$aEnabledClasses = $cfg->getConfigParam("aTinyMCE_classes") ?? [];
|
||||
if (!in_array($this->getActiveClassName(), $aEnabledClasses)) return '';
|
||||
|
||||
$oLang = Registry::getLang();
|
||||
|
||||
// filter plain cms pages
|
||||
$oEditObject = $cfg->getActiveView()->getViewDataElement("edit");
|
||||
$sCoreTableName = $oEditObject->getCoreTableName();
|
||||
if ($sCoreTableName === "oxcontents" && !in_array($oEditObject->getLoadUd(), $aPlainCmsPages)) {
|
||||
$aPlainCmsPages = $cfg->getConfigParam("aTinyMCE_plaincms") ?? [];
|
||||
if ($sCoreTableName === "oxcontents" && in_array($oEditObject->getLoadId(), $aPlainCmsPages)) {
|
||||
return $oLang->translateString("BLA_TINYMCE_PLAINCMS");
|
||||
}
|
||||
|
||||
$blFilemanager = false; //$cfg->getConfigParam("blTinyMCE_filemanager");
|
||||
// @todo: $blFilemanager wiederherstellen
|
||||
// ******************** TinyMCE Config ********************
|
||||
|
||||
// processing editor config & other stuff
|
||||
$sLang = $oLang->getLanguageAbbr($oLang->getTplLanguage());
|
||||
// array to assign shop lang abbreviations to lang file names of tinymce: shopLang => langfile (without .js )
|
||||
// array to assign shop lang abbreviations to lang files of tinymce: shopLang => langfile (without .js )
|
||||
$aLang = array(
|
||||
"cs" => "cs",
|
||||
"da" => "da",
|
||||
"de" => "de",
|
||||
"es" => "es_419",
|
||||
"fr" => "fr_FR",
|
||||
"it" => "it",
|
||||
"it" => "it_IT",
|
||||
"nl" => "nl",
|
||||
"ru" => "ru"
|
||||
);
|
||||
$sLang = $aLang[$oLang->getLanguageAbbr($oLang->getTplLanguage())] ?? "en";
|
||||
|
||||
// default config
|
||||
|
||||
// processing editor config & other stuff
|
||||
|
||||
// default config, updated on 2021-10-10 according to
|
||||
$aConfig = array(
|
||||
'force_br_newlines' => 'false',
|
||||
'force_p_newlines' => 'false',
|
||||
'forced_root_block' => '""',
|
||||
// integration options https://www.tiny.cloud/docs/configure/integration-and-setup/
|
||||
// 'auto_focus' => '', // don't think we need me, maybe for cms pages?
|
||||
'base_url' => q($this->getBaseDir().'modules/vt/TinyMCE/out/tinymce/'),
|
||||
'cache_suffix' => q('?v=20211010'),
|
||||
'selector' => '"textarea:not(.mceNoEditor)"',
|
||||
'language' => '"' . (in_array($sLang, $aLang) ? $aLang[$sLang] : 'en') . '"',
|
||||
|
||||
// gui options https://www.tiny.cloud/docs/configure/editor-appearance/
|
||||
'contextmenu' => 'false', q("link linkchecker image imagetools table"),
|
||||
'min_height' => 350,
|
||||
'max_height' => q('90%'),
|
||||
'max_width' => q('90%'),
|
||||
'menubar' => 'false',
|
||||
'toolbar_sticky' => 'true',
|
||||
|
||||
// content appearance https://www.tiny.cloud/docs/configure/content-appearance/
|
||||
'content_css' => q('/out/wave/src/css/styles.min.css'), // hardcoded, for testing purposes
|
||||
|
||||
// content filtering https://www.tiny.cloud/docs/configure/content-filtering/
|
||||
'entity_encoding' => q('raw'),
|
||||
'protect' => '[ /\[\{((?!\}\]).)+\}\]/gm ]', // holy shit, this is like Weihnachten and Geburtstag all at once
|
||||
|
||||
// content formatting https://www.tiny.cloud/docs/configure/content-formatting/
|
||||
|
||||
// localization https://www.tiny.cloud/docs/configure/localization/
|
||||
'language' => q($sLang),
|
||||
|
||||
// URL handling https://www.tiny.cloud/docs/configure/url-handling/
|
||||
'document_base_url' => q($this->getBaseDir()),
|
||||
'relative_urls' => 'true',
|
||||
|
||||
// plugins
|
||||
'image_advtab' => 'true'
|
||||
|
||||
|
||||
/*
|
||||
// old
|
||||
//'spellchecker_language' => '"' . (in_array($sLang, $aLang) ? $aLang[$sLang] : 'en') . '"',
|
||||
'nowrap' => 'false',
|
||||
'entity_encoding' => '"raw"',
|
||||
// http://www.tinymce.com/wiki.php/Configuration:entity_encoding
|
||||
'height' => 300,
|
||||
'menubar' => 'false',
|
||||
'document_base_url' => '"' . $this->getBaseDir() . '"',
|
||||
// http://www.tinymce.com/wiki.php/Configuration:document_base_url
|
||||
'relative_urls' => 'false',
|
||||
// http://www.tinymce.com/wiki.php/Configuration:relative_urls
|
||||
'plugin_preview_width' => 'window.innerWidth',
|
||||
'plugin_preview_height' => 'window.innerHeight-90',
|
||||
'code_dialog_width' => 'window.innerWidth-50',
|
||||
'code_dialog_height' => 'window.innerHeight-130',
|
||||
'image_advtab' => 'true',
|
||||
'imagetools_toolbar' => '"rotateleft rotateright | flipv fliph | editimage imageoptions"',
|
||||
'moxiemanager_fullscreen' => 'true',
|
||||
'insertdatetime_formats' => '[ "%d.%m.%Y", "%H:%M" ]',
|
||||
'nonbreaking_force_tab' => 'true',
|
||||
// http://www.tinymce.com/wiki.php/Plugin:nonbreaking
|
||||
'autoresize_max_height' => '400',
|
||||
'urlconverter_callback' => '"urlconverter"',
|
||||
'filemanager_access_key' => '"' . md5($_SERVER['DOCUMENT_ROOT']) . '"',
|
||||
'tinymcehelper' => '"' . $this->getSelfActionLink() . 'renderPartial=1"'
|
||||
*/
|
||||
);
|
||||
|
||||
if ($blFilemanager) {
|
||||
$aDefaultConfig['external_filemanager_path'] = '"../modules/bla/bla-tinymce/fileman/"';
|
||||
$aDefaultConfig['filemanager_access_key'] = '"' . md5($_SERVER['HTTP_HOST']) . '"';
|
||||
$oUS = Registry::get("oxUtilsServer");
|
||||
$oUS->setOxCookie("filemanagerkey", md5($_SERVER['DOCUMENT_ROOT'] . $oUS->getOxCookie("admin_sid")));
|
||||
}
|
||||
|
||||
//merging with onfig override
|
||||
$aOverrideCfg = $this->_getTinyCustConfig();
|
||||
if (!empty($aOverrideCfg) && is_array($aOverrideCfg)) {
|
||||
@ -102,17 +133,15 @@ class ViewConfig extends ViewConfig_parent
|
||||
|
||||
// default plugins and their buttons
|
||||
$aPlugins = array(
|
||||
'advlist' => '', // '' = plugin has no buttons
|
||||
//'advlist' => '', // '' = plugin has no buttons
|
||||
'anchor' => 'anchor',
|
||||
'autolink' => '',
|
||||
'autoresize' => '',
|
||||
'charmap' => 'charmap',
|
||||
'code' => 'code',
|
||||
'colorpicker' => '',
|
||||
'hr' => 'hr',
|
||||
'image' => 'image',
|
||||
'imagetools' => '',
|
||||
'insertdatetime' => 'insertdatetime',
|
||||
// 'imagetools' => '', // das hier klingt sehr kompliziert
|
||||
'link' => 'link unlink',
|
||||
'lists' => '',
|
||||
'media' => 'media',
|
||||
@ -120,11 +149,10 @@ class ViewConfig extends ViewConfig_parent
|
||||
'pagebreak' => 'pagebreak',
|
||||
'paste' => 'pastetext',
|
||||
'preview' => 'preview',
|
||||
'quickbars' => '',//'quicklink quickimage quicktable',
|
||||
'searchreplace' => 'searchreplace',
|
||||
'table' => 'table',
|
||||
'textcolor' => 'forecolor backcolor',
|
||||
'visualblocks' => '',
|
||||
//'visualchars' => 'visualchars',
|
||||
'visualblocks' => 'visualblocks',
|
||||
'wordcount' => '',
|
||||
'oxfullscreen' => 'fullscreen', //custom fullscreen plugin
|
||||
//'oxwidget' => 'widget'
|
||||
@ -132,8 +160,8 @@ class ViewConfig extends ViewConfig_parent
|
||||
);
|
||||
|
||||
// plugins for newsletter emails
|
||||
if ($this->getActiveClassName() == "newsletter_main") {
|
||||
$aPlugins["legacyoutput"] = "false";
|
||||
if ($this->getActiveClassName() === "newsletter_main") {
|
||||
$aPlugins["legacyoutput"] = "";
|
||||
$aPlugins["fullpage"] = "fullpage";
|
||||
}
|
||||
|
||||
@ -156,20 +184,21 @@ class ViewConfig extends ViewConfig_parent
|
||||
'out/plugins/oxfullscreen/plugin.js'
|
||||
) . '" ';
|
||||
//$aConfig['external_plugins'] .= ', "oxwidget":"' . $this->getModuleUrl('bla-tinymce', 'plugins/oxwidget/plugin.js') . '" ';
|
||||
if ($blFilemanager) {
|
||||
$aConfig['external_plugins'] .= ',"roxy":"' . $this->getModuleUrl(
|
||||
|
||||
|
||||
$blFilemanager = $cfg->getConfigParam("blTinyMCE_filemanager");
|
||||
// @todo: $blFilemanager wiederherstellen
|
||||
if ($blFilemanager)
|
||||
{
|
||||
$aConfig['filemanager_url'] = q(str_replace('&','&',$this->getSslSelfLink())."cl=tinyfilemanager");
|
||||
$sFilemanagerKey = md5_file(Registry::getConfig()->getConfigParam("sShopDir")."/config.inc.php");
|
||||
//$aConfig['filemanager_access_key'] = q($sFilemanagerKey);
|
||||
Registry::get(UtilsServer::class)->setOxCookie("filemanagerkey", $sFilemanagerKey);
|
||||
|
||||
$aConfig['external_plugins'] .= ',"roxy":' . q($this->getModuleUrl(
|
||||
'vt-tinymce',
|
||||
'out/plugins/roxy/plugin.js'
|
||||
) . '" ';
|
||||
}
|
||||
|
||||
$blN1ED = false;
|
||||
if ($blN1ED) {
|
||||
$aConfig['apiKey'] = "'MK2RDFLT'";
|
||||
$aConfig['external_plugins'] .= ',"n1ed":"' . $this->getModuleUrl(
|
||||
'vt-tinymce',
|
||||
'out/plugins/n1ed/plugin.js'
|
||||
) . '" ';
|
||||
));
|
||||
}
|
||||
|
||||
//$aConfig['external_plugins'] .= ',"oxgetseourl":"' . $this->getModuleUrl('bla-tinymce', 'plugins/oxgetseourl/plugin.js') . '" ';
|
||||
@ -184,8 +213,9 @@ class ViewConfig extends ViewConfig_parent
|
||||
|
||||
// default toolbar buttons
|
||||
$aDefaultButtons = array(
|
||||
"undo redo |",
|
||||
"undo redo",
|
||||
//"cut copy paste",
|
||||
"forecolor backcolor",
|
||||
"bold italic underline strikethrough",
|
||||
"alignleft aligncenter alignright alignjustify",
|
||||
"bullist numlist",
|
||||
@ -195,10 +225,10 @@ class ViewConfig extends ViewConfig_parent
|
||||
"superscript",
|
||||
"formatselect",
|
||||
//"fontselect",
|
||||
"fontsizeselect",
|
||||
//"fontsizeselect",
|
||||
"removeformat"
|
||||
);
|
||||
$aOverrideButtons = Registry::getConfig()->getConfigParam("aTinyMCE_buttons");
|
||||
$aOverrideButtons = $cfg->getConfigParam("aTinyMCE_buttons");
|
||||
$aButtons = (empty($aOverrideButtons) || !is_array($aOverrideButtons)) ? $aDefaultButtons : $aOverrideButtons;
|
||||
|
||||
// plugin buttons
|
||||
@ -208,7 +238,7 @@ class ViewConfig extends ViewConfig_parent
|
||||
$aCustomButtons = $this->_getTinyToolbarControls();
|
||||
|
||||
$aButtons = array_merge(array_filter($aButtons), [" | "], array_filter($aPluginButtons), array_filter($aCustomButtons));
|
||||
$aConfig['toolbar'] = '["' . implode(" ", $aButtons) . '"]';
|
||||
$aConfig['toolbar'] = '["' . implode(" | ", $aButtons) . '"]';
|
||||
|
||||
|
||||
// compile the whole config stuff
|
||||
|
0
Application/Core/security.inc.php → Application/Core/config.php
Fichier normal → Fichier exécutable
@ -1,65 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* bla-tinymce
|
||||
* Copyright (C) 2017 bestlife AG
|
||||
* info: oxid@bestlife.ag
|
||||
*
|
||||
* This program is free software;
|
||||
* you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation;
|
||||
* either version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
* You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
* Marat Bedoev
|
||||
*/
|
||||
|
||||
class tinymcehelper extends oxAdminView
|
||||
{
|
||||
protected $_errors;
|
||||
protected $_content;
|
||||
|
||||
public function render()
|
||||
{
|
||||
$oOutput = oxRegistry::get("oxOutput");
|
||||
$oOutput->setCharset($this->getCharSet());
|
||||
$oOutput->setOutputFormat(oxOutput::OUTPUT_FORMAT_JSON);
|
||||
$oOutput->sendHeaders();
|
||||
$oOutput->output('errors', $this->_errors);
|
||||
$oOutput->output('content', $this->_content);
|
||||
exit;
|
||||
}
|
||||
|
||||
public function search()
|
||||
{
|
||||
$cfg = oxRegistry::getConfig();
|
||||
|
||||
$what = $cfg->getRequestParameter("what");
|
||||
$where = $cfg->getRequestParameter("where");
|
||||
|
||||
$this->_content = $what . ' + '. $where;
|
||||
}
|
||||
|
||||
public function getCMS()
|
||||
{
|
||||
$oList = oxNew("oxlist");
|
||||
$oList->init("oxcontent");
|
||||
$oListObject = $oList->getBaseObject();
|
||||
$sViewName = $oListObject->getViewName();
|
||||
$sActiveSnippet = $oListObject->getSqlActiveSnippet();
|
||||
$sSQL = "SELECT OXID, OXLOADID, OXTITLE FROM {$sViewName} WHERE {$sActiveSnippet} AND {$sViewName}.oxfolder != 'CMSFOLDER_EMAILS'";
|
||||
|
||||
$aPages = oxDB::getDb()->getAssoc($sSQL);
|
||||
$this->_content = $aPages;
|
||||
}
|
||||
|
||||
public function oxgetseourl()
|
||||
{
|
||||
$cfg = oxRegistry::getConfig();
|
||||
|
||||
$type = ($cfg->getRequestParameter("type") ? $cfg->getRequestParameter("type") : "oxcontent");
|
||||
$oxid = ($cfg->getRequestParameter("oxid") ? $cfg->getRequestParameter("oxid") : "oximpressum");
|
||||
}
|
||||
|
||||
}
|
0
out/fileman/LICENSE.txt → Application/fileman/LICENSE.txt
Fichier normal → Fichier exécutable
0
out/fileman/Uploads/Images/DSC_2987.jpg → Application/fileman/Uploads/Images/DSC_2987.jpg
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 87 KiB Après Largeur: | Hauteur: | Taille: 87 KiB |
0
out/fileman/Uploads/Images/DSC_5744.jpg → Application/fileman/Uploads/Images/DSC_5744.jpg
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 135 KiB Après Largeur: | Hauteur: | Taille: 135 KiB |
0
out/fileman/Uploads/LICENSE.txt → Application/fileman/Uploads/LICENSE.txt
Fichier normal → Fichier exécutable
0
out/fileman/Uploads/roxy-fileman-logo.gif → Application/fileman/Uploads/roxy-fileman-logo.gif
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 13 KiB Après Largeur: | Hauteur: | Taille: 13 KiB |
35
Application/fileman/conf.json
Fichier exécutable
@ -0,0 +1,35 @@
|
||||
{
|
||||
"FILES_ROOT": "/out/pictures/wysiwigpro",
|
||||
"RETURN_URL_PREFIX": "",
|
||||
"SESSION_PATH_KEY": "",
|
||||
"THUMBS_VIEW_WIDTH": "140",
|
||||
"THUMBS_VIEW_HEIGHT": "120",
|
||||
"PREVIEW_THUMB_WIDTH": "100",
|
||||
"PREVIEW_THUMB_HEIGHT": "100",
|
||||
"MAX_IMAGE_WIDTH": "2000",
|
||||
"MAX_IMAGE_HEIGHT": "2000",
|
||||
"INTEGRATION": "tinymce4",
|
||||
"DIRLIST": "php/dirtree.php",
|
||||
"CREATEDIR": "php/createdir.php",
|
||||
"DELETEDIR": "php/deletedir.php",
|
||||
"MOVEDIR": "php/movedir.php",
|
||||
"COPYDIR": "php/copydir.php",
|
||||
"RENAMEDIR": "php/renamedir.php",
|
||||
"FILESLIST": "php/fileslist.php",
|
||||
"UPLOAD": "php/upload.php",
|
||||
"DOWNLOAD": "php/download.php",
|
||||
"DOWNLOADDIR": "php/downloaddir.php",
|
||||
"DELETEFILE": "php/deletefile.php",
|
||||
"MOVEFILE": "php/movefile.php",
|
||||
"COPYFILE": "php/copyfile.php",
|
||||
"RENAMEFILE": "php/renamefile.php",
|
||||
"GENERATETHUMB": "php/thumb.php",
|
||||
"DEFAULTVIEW": "list",
|
||||
"FORBIDDEN_UPLOADS": "zip js jsp jsb mhtml mht xhtml xht php phtml php3 php4 php5 phps shtml jhtml pl sh py cgi exe application gadget hta cpl msc jar vb jse ws wsf wsc wsh ps1 ps2 psc1 psc2 msh msh1 msh2 inf reg scf msp scr dll msi vbs bat com pif cmd vxd cpl htpasswd htaccess",
|
||||
"ALLOWED_UPLOADS": "",
|
||||
"FILEPERMISSIONS": "0644",
|
||||
"DIRPERMISSIONS": "0755",
|
||||
"LANG": "auto",
|
||||
"DATEFORMAT": "dd.MM.yyyy HH:mm",
|
||||
"OPEN_LAST_DIR": "yes"
|
||||
}
|
0
out/fileman/css/images/animated-overlay.gif → Application/fileman/css/images/animated-overlay.gif
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/css/images/ui-bg_flat_0_aaaaaa_40x100.png → Application/fileman/css/images/ui-bg_flat_0_aaaaaa_40x100.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 212 B Après Largeur: | Hauteur: | Taille: 212 B |
0
out/fileman/css/images/ui-bg_flat_75_ffffff_40x100.png → Application/fileman/css/images/ui-bg_flat_75_ffffff_40x100.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 208 B Après Largeur: | Hauteur: | Taille: 208 B |
0
out/fileman/css/images/ui-bg_glass_55_fbf9ee_1x400.png → Application/fileman/css/images/ui-bg_glass_55_fbf9ee_1x400.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 335 B Après Largeur: | Hauteur: | Taille: 335 B |
0
out/fileman/css/images/ui-bg_glass_65_ffffff_1x400.png → Application/fileman/css/images/ui-bg_glass_65_ffffff_1x400.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 207 B Après Largeur: | Hauteur: | Taille: 207 B |
0
out/fileman/css/images/ui-bg_glass_75_dadada_1x400.png → Application/fileman/css/images/ui-bg_glass_75_dadada_1x400.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 262 B Après Largeur: | Hauteur: | Taille: 262 B |
0
out/fileman/css/images/ui-bg_glass_75_e6e6e6_1x400.png → Application/fileman/css/images/ui-bg_glass_75_e6e6e6_1x400.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 262 B Après Largeur: | Hauteur: | Taille: 262 B |
0
out/fileman/css/images/ui-bg_glass_95_fef1ec_1x400.png → Application/fileman/css/images/ui-bg_glass_95_fef1ec_1x400.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 332 B Après Largeur: | Hauteur: | Taille: 332 B |
0
out/fileman/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png → Application/fileman/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 280 B Après Largeur: | Hauteur: | Taille: 280 B |
0
out/fileman/css/images/ui-icons_222222_256x240.png → Application/fileman/css/images/ui-icons_222222_256x240.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 6.8 KiB Après Largeur: | Hauteur: | Taille: 6.8 KiB |
0
out/fileman/css/images/ui-icons_2e83ff_256x240.png → Application/fileman/css/images/ui-icons_2e83ff_256x240.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 4.4 KiB Après Largeur: | Hauteur: | Taille: 4.4 KiB |
0
out/fileman/css/images/ui-icons_454545_256x240.png → Application/fileman/css/images/ui-icons_454545_256x240.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 6.8 KiB Après Largeur: | Hauteur: | Taille: 6.8 KiB |
0
out/fileman/css/images/ui-icons_888888_256x240.png → Application/fileman/css/images/ui-icons_888888_256x240.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 6.8 KiB Après Largeur: | Hauteur: | Taille: 6.8 KiB |
0
out/fileman/css/images/ui-icons_cd0a0a_256x240.png → Application/fileman/css/images/ui-icons_cd0a0a_256x240.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 4.4 KiB Après Largeur: | Hauteur: | Taille: 4.4 KiB |
0
out/fileman/css/jquery-ui-1.10.4.custom.css → Application/fileman/css/jquery-ui-1.10.4.custom.css
externe
Fichier normal → Fichier exécutable
0
out/fileman/css/jquery-ui-1.10.4.custom.min.css → Application/fileman/css/jquery-ui-1.10.4.custom.min.css
externe
Fichier normal → Fichier exécutable
0
out/fileman/css/main.css → Application/fileman/css/main.css
Fichier normal → Fichier exécutable
0
out/fileman/css/main.min.css → Application/fileman/css/main.min.css
externe
Fichier normal → Fichier exécutable
0
out/fileman/dev.html → Application/fileman/dev.html
Fichier normal → Fichier exécutable
0
out/fileman/images/action-folder-paste.png → Application/fileman/images/action-folder-paste.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 3.0 KiB Après Largeur: | Hauteur: | Taille: 3.0 KiB |
0
out/fileman/images/action-folder-rename.png → Application/fileman/images/action-folder-rename.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 3.0 KiB Après Largeur: | Hauteur: | Taille: 3.0 KiB |
0
out/fileman/images/arrow_down.png → Application/fileman/images/arrow_down.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 381 B Après Largeur: | Hauteur: | Taille: 381 B |
0
out/fileman/images/arrow_up.png → Application/fileman/images/arrow_up.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 391 B Après Largeur: | Hauteur: | Taille: 391 B |
0
out/fileman/images/blank.gif → Application/fileman/images/blank.gif
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 43 B Après Largeur: | Hauteur: | Taille: 43 B |
0
out/fileman/images/copy.png → Application/fileman/images/copy.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 2.9 KiB Après Largeur: | Hauteur: | Taille: 2.9 KiB |
0
out/fileman/images/cut.png → Application/fileman/images/cut.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 3.1 KiB Après Largeur: | Hauteur: | Taille: 3.1 KiB |
0
out/fileman/images/dir-minus.png → Application/fileman/images/dir-minus.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 166 B Après Largeur: | Hauteur: | Taille: 166 B |
0
out/fileman/images/dir-plus.png → Application/fileman/images/dir-plus.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 176 B Après Largeur: | Hauteur: | Taille: 176 B |
0
out/fileman/images/file-add.png → Application/fileman/images/file-add.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 3.1 KiB Après Largeur: | Hauteur: | Taille: 3.1 KiB |
0
out/fileman/images/file-delete.png → Application/fileman/images/file-delete.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 3.0 KiB Après Largeur: | Hauteur: | Taille: 3.0 KiB |
0
out/fileman/images/file-download.png → Application/fileman/images/file-download.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 3.0 KiB Après Largeur: | Hauteur: | Taille: 3.0 KiB |
0
out/fileman/images/file-duplicate.png → Application/fileman/images/file-duplicate.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 3.1 KiB Après Largeur: | Hauteur: | Taille: 3.1 KiB |
0
out/fileman/images/file-upload.png → Application/fileman/images/file-upload.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 854 B Après Largeur: | Hauteur: | Taille: 854 B |
0
out/fileman/images/filetypes/big/file_extension_3gp.png → Application/fileman/images/filetypes/big/file_extension_3gp.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.3 KiB Après Largeur: | Hauteur: | Taille: 1.3 KiB |
0
out/fileman/images/filetypes/big/file_extension_7z.png → Application/fileman/images/filetypes/big/file_extension_7z.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.4 KiB Après Largeur: | Hauteur: | Taille: 1.4 KiB |
0
out/fileman/images/filetypes/big/file_extension_ace.png → Application/fileman/images/filetypes/big/file_extension_ace.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_ai.png → Application/fileman/images/filetypes/big/file_extension_ai.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_aif.png → Application/fileman/images/filetypes/big/file_extension_aif.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_aiff.png → Application/fileman/images/filetypes/big/file_extension_aiff.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_amr.png → Application/fileman/images/filetypes/big/file_extension_amr.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_asf.png → Application/fileman/images/filetypes/big/file_extension_asf.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_asx.png → Application/fileman/images/filetypes/big/file_extension_asx.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_bat.png → Application/fileman/images/filetypes/big/file_extension_bat.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.8 KiB Après Largeur: | Hauteur: | Taille: 1.8 KiB |
0
out/fileman/images/filetypes/big/file_extension_bin.png → Application/fileman/images/filetypes/big/file_extension_bin.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.2 KiB Après Largeur: | Hauteur: | Taille: 1.2 KiB |
0
out/fileman/images/filetypes/big/file_extension_bmp.png → Application/fileman/images/filetypes/big/file_extension_bmp.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_bup.png → Application/fileman/images/filetypes/big/file_extension_bup.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_cab.png → Application/fileman/images/filetypes/big/file_extension_cab.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_cbr.png → Application/fileman/images/filetypes/big/file_extension_cbr.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_cda.png → Application/fileman/images/filetypes/big/file_extension_cda.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.8 KiB Après Largeur: | Hauteur: | Taille: 1.8 KiB |
0
out/fileman/images/filetypes/big/file_extension_cdl.png → Application/fileman/images/filetypes/big/file_extension_cdl.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_cdr.png → Application/fileman/images/filetypes/big/file_extension_cdr.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_chm.png → Application/fileman/images/filetypes/big/file_extension_chm.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_dat.png → Application/fileman/images/filetypes/big/file_extension_dat.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_divx.png → Application/fileman/images/filetypes/big/file_extension_divx.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_dll.png → Application/fileman/images/filetypes/big/file_extension_dll.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_dmg.png → Application/fileman/images/filetypes/big/file_extension_dmg.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_doc.png → Application/fileman/images/filetypes/big/file_extension_doc.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_dss.png → Application/fileman/images/filetypes/big/file_extension_dss.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.4 KiB Après Largeur: | Hauteur: | Taille: 1.4 KiB |
0
out/fileman/images/filetypes/big/file_extension_dvf.png → Application/fileman/images/filetypes/big/file_extension_dvf.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.8 KiB Après Largeur: | Hauteur: | Taille: 1.8 KiB |
0
out/fileman/images/filetypes/big/file_extension_dwg.png → Application/fileman/images/filetypes/big/file_extension_dwg.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_eml.png → Application/fileman/images/filetypes/big/file_extension_eml.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_eps.png → Application/fileman/images/filetypes/big/file_extension_eps.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_exe.png → Application/fileman/images/filetypes/big/file_extension_exe.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.3 KiB Après Largeur: | Hauteur: | Taille: 1.3 KiB |
0
out/fileman/images/filetypes/big/file_extension_fla.png → Application/fileman/images/filetypes/big/file_extension_fla.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_flv.png → Application/fileman/images/filetypes/big/file_extension_flv.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.3 KiB Après Largeur: | Hauteur: | Taille: 1.3 KiB |
0
out/fileman/images/filetypes/big/file_extension_gif.png → Application/fileman/images/filetypes/big/file_extension_gif.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.3 KiB Après Largeur: | Hauteur: | Taille: 1.3 KiB |
0
out/fileman/images/filetypes/big/file_extension_gz.png → Application/fileman/images/filetypes/big/file_extension_gz.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.4 KiB Après Largeur: | Hauteur: | Taille: 1.4 KiB |
0
out/fileman/images/filetypes/big/file_extension_hqx.png → Application/fileman/images/filetypes/big/file_extension_hqx.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_htm.png → Application/fileman/images/filetypes/big/file_extension_htm.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_html.png → Application/fileman/images/filetypes/big/file_extension_html.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.8 KiB Après Largeur: | Hauteur: | Taille: 1.8 KiB |
0
out/fileman/images/filetypes/big/file_extension_ifo.png → Application/fileman/images/filetypes/big/file_extension_ifo.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_indd.png → Application/fileman/images/filetypes/big/file_extension_indd.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_iso.png → Application/fileman/images/filetypes/big/file_extension_iso.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.8 KiB Après Largeur: | Hauteur: | Taille: 1.8 KiB |
0
out/fileman/images/filetypes/big/file_extension_jar.png → Application/fileman/images/filetypes/big/file_extension_jar.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_jpeg.png → Application/fileman/images/filetypes/big/file_extension_jpeg.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_jpg.png → Application/fileman/images/filetypes/big/file_extension_jpg.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_lnk.png → Application/fileman/images/filetypes/big/file_extension_lnk.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.4 KiB Après Largeur: | Hauteur: | Taille: 1.4 KiB |
0
out/fileman/images/filetypes/big/file_extension_log.png → Application/fileman/images/filetypes/big/file_extension_log.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_m4a.png → Application/fileman/images/filetypes/big/file_extension_m4a.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_m4b.png → Application/fileman/images/filetypes/big/file_extension_m4b.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_m4p.png → Application/fileman/images/filetypes/big/file_extension_m4p.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_m4v.png → Application/fileman/images/filetypes/big/file_extension_m4v.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |
0
out/fileman/images/filetypes/big/file_extension_mcd.png → Application/fileman/images/filetypes/big/file_extension_mcd.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_mdb.png → Application/fileman/images/filetypes/big/file_extension_mdb.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.7 KiB Après Largeur: | Hauteur: | Taille: 1.7 KiB |
0
out/fileman/images/filetypes/big/file_extension_mid.png → Application/fileman/images/filetypes/big/file_extension_mid.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.5 KiB Après Largeur: | Hauteur: | Taille: 1.5 KiB |
0
out/fileman/images/filetypes/big/file_extension_mov.png → Application/fileman/images/filetypes/big/file_extension_mov.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.8 KiB Après Largeur: | Hauteur: | Taille: 1.8 KiB |
0
out/fileman/images/filetypes/big/file_extension_mp2.png → Application/fileman/images/filetypes/big/file_extension_mp2.png
Fichier normal → Fichier exécutable
Avant Largeur: | Hauteur: | Taille: 1.6 KiB Après Largeur: | Hauteur: | Taille: 1.6 KiB |