| Current Path : /home/w/u/e/wuectly/www/03cbe/ |
| Current File : /home/w/u/e/wuectly/www/03cbe/file.tar |
index.html 0000604 00000000037 15245741040 0006537 0 ustar 00 <!DOCTYPE html><title></title>
view.html.php 0000604 00000015004 15245741040 0007170 0 ustar 00 <?php
/**
* @package AcyMailing for Joomla!
* @version 5.9.6
* @author acyba.com
* @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
class FileViewFile extends acymailingView{
function display($tpl = null){
acymailing_addStyle(false, ACYMAILING_CSS.'frontendedition.css?v='.filemtime(ACYMAILING_MEDIA.'css'.DS.'frontendedition.css'));
acymailing_setNoTemplate();
$function = $this->getLayout();
if(method_exists($this, $function)) $this->$function();
parent::display($tpl);
}
function css(){
$file = acymailing_getVar('cmd', 'file');
if(!preg_match('#^([-A-Z0-9]*)_([-_A-Z0-9]*)$#i', $file, $result)){
acymailing_display('Could not load the file '.$file.' properly');
exit;
}
$type = $result[1];
$fileName = $result[2];
$content = acymailing_getVar('string', 'csscontent');
if(empty($content) && file_exists(ACYMAILING_MEDIA.'css'.DS.$type.'_'.$fileName.'.css')) $content = file_get_contents(ACYMAILING_MEDIA.'css'.DS.$type.'_'.$fileName.'.css');
if(strpos($fileName, 'default') !== false){
$fileName = 'custom'.str_replace('default', '', $fileName);
$i = 1;
while(file_exists(ACYMAILING_MEDIA.'css'.DS.$type.'_'.$fileName.'.css')){
$fileName = 'custom'.$i;
$i++;
}
}
if(acymailing_isNoTemplate()){
$acyToolbar = acymailing_get('helper.toolbar');
$acyToolbar->custom('savecss', acymailing_translation('ACY_SAVE'), 'save', false);
$acyToolbar->setTitle($type.'_'.$fileName.'.css');
$acyToolbar->topfixed = false;
$acyToolbar->display();
}
$this->content = $content;
$this->fileName = $fileName;
$this->type = $type;
}
function language(){
$this->setLayout('default');
$code = acymailing_getVar('cmd', 'code');
if(empty($code)){
acymailing_display('Code not specified', 'error');
return;
}
$file = new stdClass();
$file->name = $code;
$path = acymailing_getLanguagePath(ACYMAILING_ROOT, $code).DS.$code.'.com_acymailing.ini';
$file->path = $path;
$showLatest = true;
$loadLatest = false;
if(file_exists($path)){
$file->content = acymailing_fileGetContent($path);
if(empty($file->content)){
acymailing_display('File not found : '.$path, 'error');
}
}else{
$loadLatest = true;
acymailing_enqueueMessage(acymailing_translation('LOAD_ENGLISH_1').'<br />'.acymailing_translation('LOAD_ENGLISH_2').'<br />'.acymailing_translation('LOAD_ENGLISH_3'), 'info');
$file->content = acymailing_fileGetContent(acymailing_getLanguagePath(ACYMAILING_ROOT, ACYMAILING_DEFAULT_LANGUAGE).DS.ACYMAILING_DEFAULT_LANGUAGE.'.com_acymailing.ini');
}
$custompath = acymailing_getLanguagePath(ACYMAILING_ROOT, $code).DS.$code.'.com_acymailing_custom.ini';
if(file_exists($custompath)){
$file->customcontent = acymailing_fileGetContent($custompath);
}
if($loadLatest || acymailing_getVar('cmd', 'task') == 'latest'){
if(file_exists(acymailing_getLanguagePath(ACYMAILING_ROOT, $code))){
acymailing_addScript(false, ACYMAILING_UPDATEURL.'languageload&code='.acymailing_getVar('cmd', 'code'));
}else{
acymailing_enqueueMessage('The specified language "'.htmlspecialchars($code, ENT_COMPAT, 'UTF-8').'" is not installed on your site', 'warning');
}
$showLatest = false;
}elseif(acymailing_getVar('cmd', 'task') == 'save'){
$showLatest = false;
}
if(acymailing_isNoTemplate()){
$acyToolbar = acymailing_get('helper.toolbar');
$acyToolbar->save();
$acyToolbar->custom('share', acymailing_translation('SHARE'), 'share', false);
$acyToolbar->setTitle(acymailing_translation('ACY_FILE').' : '.$this->escape($file->name));
$acyToolbar->topfixed = false;
$acyToolbar->display();
}
$this->showLatest = $showLatest;
$this->file = $file;
}
function share(){
$file = new stdClass();
$file->name = acymailing_getVar('cmd', 'code');
$acyToolbar = acymailing_get('helper.toolbar');
$acyToolbar->custom('share', acymailing_translation('SHARE'), 'share', false, "if(confirm('".acymailing_translation('CONFIRM_SHARE_TRANS', true)."')){ acymailing.submitbutton('send');} return false;");
$acyToolbar->setTitle(acymailing_translation('SHARE').' : '.$this->escape($file->name));
$acyToolbar->topfixed = false;
$acyToolbar->display();
$this->file = $file;
}
function select(){
$config = acymailing_config();
$uploadFolders = acymailing_getFilesFolder('upload', true);
$uploadFolder = acymailing_getVar('string', 'currentFolder', $uploadFolders[0]);
$uploadPath = acymailing_cleanPath(ACYMAILING_ROOT.trim(str_replace('/', DS, trim($uploadFolder)), DS));
$map = acymailing_getVar('string', 'id');
$uploadedFile = acymailing_getVar('array', 'uploadedFile', array(), 'files');
if(!empty($uploadedFile) && !empty($uploadedFile['name'])){
$uploaded = acymailing_importFile($uploadedFile, $uploadPath, in_array($map, array('thumb', 'readmore')));
if($uploaded){
$script = 'parent.document.getElementById("'.$map.'").value = "'.str_replace(DS, '/', $uploadFolder).'/'.$uploaded.'";';
if(in_array($map, array('thumb', 'readmore'))){
$script .= 'parent.document.getElementById("'.$map.'preview").src = "'.acymailing_rootURI().str_replace(DS, '/', $uploadFolder).'/'.$uploaded.'";';
}else{
$script .= 'parent.document.getElementById("'.$map.'selection").innerHTML = "'.$uploaded.'";';
$script .= "parent.document.getElementById('".$map."suppr').style.display = 'inline';";
}
$script .= 'window.parent.acymailing.closeBox();';
acymailing_addScript(true, $script);
}
}
$fileToDelete = acymailing_getVar('string', 'filename', '');
if(!empty($fileToDelete) && file_exists($uploadPath.DS.$fileToDelete) && empty($uploadedFile)){
$checkAttach = acymailing_loadResultArray('SELECT mailid FROM #__acymailing_mail WHERE attach LIKE \'%"'.$uploadFolder.'/'.$fileToDelete.'"%\'');
if(!empty($checkAttach)){
acymailing_display(acymailing_translation_sprintf('ACY_CANT_DELETEFILE', implode($checkAttach, ', ')), 'error');
}else{
if(acymailing_deleteFile($uploadPath.DS.$fileToDelete)){
acymailing_display(acymailing_translation('ACY_DELETED_FILE_SUCCESS'), 'success');
}else{
acymailing_display(acymailing_translation('ACY_DELETED_FILE_ERROR'), 'error');
}
}
}
$displayType = acymailing_getVar('string', 'displayType', 'icons');
$this->config = $config;
$this->uploadFolder = $uploadFolder;
$this->uploadFolders = $uploadFolders;
$this->uploadPath = $uploadPath;
$this->map = $map;
$this->displayType = $displayType;
}
}
tmpl/default.php 0000604 00000003031 15245741040 0007650 0 ustar 00 <?php
/**
* @package AcyMailing for Joomla!
* @version 5.9.6
* @author acyba.com
* @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div id="acy_content">
<form action="<?php echo acymailing_completeLink('file', true); ?>" method="post" name="adminForm" id="adminForm" autocomplete="off">
<div class="onelineblockoptions">
<div class="acyblocktitle"><?php echo acymailing_translation('ACY_FILE').' : '.@$this->escape($this->file->name); ?>
<?php if(!empty($this->showLatest)){ ?>
<button type="button" class="acymailing_button" onclick="acymailing.submitbutton('latest')" style="margin-left: 15px !important;"> <?php echo acymailing_translation('LOAD_LATEST_LANGUAGE'); ?> <i class="acyicon-import" style="margin-left: 10px;"></i></button>
<?php } ?>
</div>
<textarea style="width:660px;height:200px;" rows="18" name="content" id="translation"><?php echo @$this->file->content; ?></textarea>
</div>
<div class="onelineblockoptions">
<div class="acyblocktitle"><?php echo acymailing_translation('CUSTOM_TRANS'); ?></div>
<?php echo acymailing_translation('CUSTOM_TRANS_DESC'); ?>
<textarea style="width:660px;height:50px;" rows="5" name="customcontent"><?php echo @$this->file->customcontent; ?></textarea>
</div>
<div class="clr"></div>
<input type="hidden" name="code" value="<?php echo @$this->escape($this->file->name); ?>"/>
<?php acymailing_formOptions(); ?>
</form>
</div>
tmpl/share.php 0000604 00000001753 15245741040 0007337 0 ustar 00 <?php
/**
* @package AcyMailing for Joomla!
* @version 5.9.6
* @author acyba.com
* @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div id="acy_content">
<form action="<?php echo acymailing_completeLink('file', true); ?>" method="post" name="adminForm" id="adminForm" autocomplete="off">
<div class="acyblockoptions">
<?php acymailing_display(acymailing_translation('SHARE_CONFIRMATION_1').'<br />'.acymailing_translation('SHARE_CONFIRMATION_2').'<br />'.acymailing_translation('SHARE_CONFIRMATION_3'), 'info'); ?><br/>
<textarea rows="8" name="mailbody" style="width:620px;height: 100px;">Hi Acyba team,
Here is a new version of the language file, I translated few more strings...</textarea>
</div>
<div class="clr"></div>
<input type="hidden" name="code" value="<?php echo $this->file->name; ?>"/>
<?php acymailing_formOptions(); ?>
</form>
</div>
tmpl/select.php 0000604 00000023735 15245741040 0007520 0 ustar 00 <?php
/**
* @package AcyMailing for Joomla!
* @version 5.9.6
* @author acyba.com
* @copyright (C) 2009-2018 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><div id="maincontent" style="border: 1px solid rgb(233, 233, 233);">
<form action="<?php echo acymailing_completeLink('file', true); ?>" method="post" name="adminForm" id="adminForm" enctype="multipart/form-data" style="margin:0px;">
<div id="folderarea" style="box-shadow: 0px 4px 4px -4px rgba(0, 0, 0, 0.3);padding:15px;">
<button style="float: right;" class="btn" onclick="changeDisplay(event);" id="btn_change_display" title="<?php echo acymailing_translation('ACY_DISPLAY_NOICON'); ?>"><i id="iconTypeDisplay" class="acyicon-list_view"></i></button>
<?php
$folders = acymailing_generateArborescence($this->uploadFolders);
$filetreeType = acymailing_get('type.filetree');
$filetreeType->display($folders, $this->uploadFolder, 'currentFolder', 'changeFolder(path)');
?>
</div>
<script type="text/javascript">
var clickedDel = false;
document.addEventListener("DOMContentLoaded", function(){
display(document.getElementById('displayType').value);
});
function changeFolder(folderName){
var url = window.location.href;
if (url.indexOf('?') > -1){
var lastParam = url.substring(url.lastIndexOf('&') + 1);
if(url.indexOf('pictName') > -1){
var temp = url.split('&');
for(var i=0;i<temp.length;i++){
if(temp[i].indexOf('pictName') > -1){
temp.splice(i, 1);
i--;
}
}
url = temp.join('&');
lastParam = url.substring(url.lastIndexOf('&') + 1);
}
if(lastParam == 'task=createFolder')url = url.replace(lastParam,'task=browse&e_name=ACY_NAME_AREA');
lastParam = lastParam.split('=');
if(lastParam=='selected_folder')
url = url.replace(lastParam, 'selected_folder='+folderName);
else
url += '¤tFolder='+folderName;
}else{
url += '?currentFolder='+folderName;
}
window.location.href = url;
}
function changeDisplay(event){
event.preventDefault();
if(document.getElementById('displayPict').style.display == ''){
display('list');
}else{
display('icons');
}
}
function display(type){
if(type == 'list'){
document.getElementById('displayPict').style.display = 'none';
document.getElementById('displayLine').style.display = '';
document.getElementById('btn_change_display').title = '<?php echo acymailing_translation('ACY_DISPLAY_ICON'); ?>';
document.getElementById('iconTypeDisplay').className = 'acyicon-image_view';
document.getElementById('displayType').value = 'list';
}else{
document.getElementById('displayPict').style.display = '';
document.getElementById('displayLine').style.display = 'none';
document.getElementById('btn_change_display').title = '<?php echo acymailing_translation('ACY_DISPLAY_NOICON'); ?>';
document.getElementById('iconTypeDisplay').className = 'acyicon-list_view';
document.getElementById('displayType').value = 'icons';
}
}
function diplayDeleteBtn(id, action){
if(action == 'display'){
document.getElementById('acy_attachment_delete_' + id + '').style.display = '';
}else{
document.getElementById('acy_attachment_delete_' + id + '').style.display = 'none';
}
}
function confirmDeleteFile(event, fileName){
event.preventDefault();
clickedDel = true;
var divText = document.getElementById('confirmTxtAttach');
divText.innerHTML = '<?php echo acymailing_translation('ACY_VALIDDELETEITEMS'); ?>' + '<br /><span class="acy_folder_name">(' + fileName + ')</span><br />';
var divDelete = document.getElementById('confirmOkAttach');
divDelete.onclick = function(event){
event.preventDefault();
deleteFile(fileName);
};
var divConfirm = document.getElementById('confirmBoxAttach');
divConfirm.style.display = 'inline';
}
function deleteFile(fileName){
var urlFile = window.location.href;
if(urlFile.lastIndexOf('#') == urlFile.length - 1){
urlFile = urlFile.substr(0, urlFile.length - 1);
}
var lastParam = urlFile.substring(urlFile.lastIndexOf('&') + 1);
if(lastParam.indexOf('filename=') > -1){
urlFile = urlFile.substring(0, urlFile.indexOf('filename=') - 1);
}
if(urlFile.indexOf('?') > -1){
window.location.href = urlFile + '&task=<?php echo acymailing_getVar('cmd', 'task', ''); ?>&id=<?php echo acymailing_getVar('cmd', 'id', ''); ?>&filename=' + fileName;
}else{
window.location.href = urlFile + '?task=<?php echo acymailing_getVar('cmd', 'task', ''); ?>&id=<?php echo acymailing_getVar('cmd', 'id', ''); ?>&filename=' + fileName;
}
}
</script>
<div id="filesarea" style="width:100%;height:460px;overflow-x: hidden;text-align: center;">
<?php
if(file_exists($this->uploadPath)) $files = acymailing_getFiles($this->uploadPath);
$imageExtensions = array('jpg', 'jpeg', 'png', 'gif', 'ico', 'bmp');
if(in_array($this->map, array('thumb', 'readmore'))){
$allowedExtensions = $imageExtensions;
}else{
$allowedExtensions = explode(',', $this->config->get('allowedfiles'));
$allowedExtensions = array_merge($allowedExtensions, $imageExtensions);
}
$displayList = '<div id="displayLine" style="display: none; text-align: left;">';
echo '<div id="displayPict">';
if(!empty($files)){
$k = 0;
$displayList .= '<table class="acymailing_smalltable">';
foreach($files as $file){
if(strrpos($file, '.') === false) continue;
$ext = strtolower(substr($file, strrpos($file, '.') + 1));
if(!in_array($ext, $allowedExtensions)) continue;
$filesFound = true;
echo '<div style="float: left; text-align: center; position: relative;">';
$linkStart = '<a href="#" style="text-decoration:none;" onclick="if(clickedDel == false){';
$linkStart .= "parent.document.getElementById('".$this->map."').value = '".str_replace(DS, '/', $this->uploadFolder)."/$file';";
if(in_array($this->map, array('thumb', 'readmore'))){
$linkStart .= "parent.document.getElementById('".$this->map."preview').src = '".acymailing_rootURI().str_replace(DS, '/', $this->uploadFolder)."/$file'; ";
}else{
$linkStart .= "parent.document.getElementById('".$this->map."selection').innerHTML = '$file'; ";
$linkStart .= "parent.document.getElementById('".$this->map."suppr').style.display = 'inline';";
}
$linkStart .= 'window.parent.acymailing.closeBox();}">';
echo $linkStart;
$structPict = '<div onmouseover="diplayDeleteBtn('.$k.', \'display\');" onmouseout="diplayDeleteBtn('.$k.', \'hide\');">';
$structPict .= '<div style="width: 160px;height: 160px;margin: 14px;border: 1px solid rgb(233, 233, 233);border-radius:4px;overflow: hidden;" onmouseover="this.style.opacity = 0.5;" onmouseout="this.style.opacity = 1;" title="'.$file.'">';
if(strlen($file) > 20){
$structPict .= '<span title="'.str_replace('"', '', $file).'">'.substr(rtrim($file, $ext), 0, 17).'...'.$ext.'</span>';
}else{
$structPict .= $file;
}
if(in_array($ext, $imageExtensions)){
$imgPath = ACYMAILING_LIVE.$this->uploadFolder.'/'.$file;
}else{
$imgPath = ACYMAILING_LIVE.ACYMAILING_MEDIA_FOLDER.'/images/file.png';
}
$structPict .= '<br /><img src="'.$imgPath.'" style="margin-top:5px;max-width:150px;"/>';
$structPict .= '</div>';
$structPict .= '<img class="acy_attachment_delete" id="acy_attachment_delete_'.$k.'" src="'.ACYMAILING_LIVE.ACYMAILING_MEDIA_FOLDER.DS.'images'.DS.'editor'.DS.'delete.png" onclick="confirmDeleteFile(event, \''.$file.'\')" style="display: none;"/>';
$structPict .= '</div>';
echo $structPict;
echo '</a></div>';
$displayList .= '<tr><td width="30" style="padding-left: 10px;">'.$linkStart.'<img src="'.$imgPath.'" style="max-width:24px;"/></a></td>';
$displayList .= '<td>'.$linkStart.$file.'</a></td>';
$displayList .= '<td><img class="acy_attachment_delete" src="'.ACYMAILING_LIVE.ACYMAILING_MEDIA_FOLDER.DS.'images'.DS.'editor'.DS.'delete.png" onclick="confirmDeleteFile(event, \''.$file.'\')"/></td></tr>';
$k++;
}
$displayList .= '</table>';
}
echo '</div>';
$displayList .= '</div>';
echo $displayList;
if(empty($filesFound)) acymailing_display(acymailing_translation('NO_FILE_FOUND'), 'warning');
?>
<div class="confirmBoxAttach" id="confirmBoxAttach" style="display: none;">
<div id="acy_popup_content">
<span class="confirmTxtAttach" id="confirmTxtAttach"></span><br/>
<button class="acymailing_button" id="confirmCancelAttach" onclick="event.preventDefault(); clickedDel=false; document.getElementById('confirmBoxAttach').style.display='none';" style="padding: 6px 15px 6px 10px;">
<i class="acyicon-cancel" style="margin-right: 5px; font-size: 16px;top: 2px; position: relative;"></i><?php echo acymailing_translation('ACY_CANCEL'); ?>
</button>
<button class="acymailing_button acymailing_button_delete" id="confirmOkAttach" style="padding: 8px 15px 6px 10px;">
<i class="acyicon-delete" style="margin-right: 5px; font-size: 12px;"></i><?php echo acymailing_translation('ACY_DELETE'); ?>
</button>
</div>
</div>
</div>
<div id="uploadarea" style="text-align: center;box-shadow: 0px -4px 4px -4px rgba(0, 0, 0, 0.3);padding: 10px 0px 10px 0px;">
<input type="file" style="width:auto;" name="uploadedFile"/><br/>
<input type="hidden" id="displayType" name="displayType" value="<?php echo $this->displayType; ?>"/>
<input type="hidden" name="currentFolder" value="<?php echo htmlspecialchars($this->uploadFolder, ENT_COMPAT, 'UTF-8'); ?>"/>
<input type="hidden" name="id" value="<?php echo htmlspecialchars($this->map, ENT_COMPAT, 'UTF-8'); ?>"/>
<?php acymailing_formOptions(); ?>
<button class="acymailing_button_grey" type="button" onclick="document.adminForm.task.value='select';submit();"> <?php echo acymailing_translation('IMPORT'); ?> </button>
</div>
</form>
</div>
tmpl/index.html 0000604 00000000054 15245741040 0007512 0 ustar 00 <html><body bgcolor="#FFFFFF"></body></html>