Файловый менеджер - Редактировать - /home/easybachat/sangemarmarmarble.com/oc-admin/appearance.php
Ðазад
<?php if(!defined('ABS_PATH')) exit('ABS_PATH is not loaded. Direct access is not allowed.'); /* * Copyright 2014 Osclass * Copyright 2025 Osclass by OsclassPoint.com * * Osclass maintained & developed by OsclassPoint.com * You may not use this file except in compliance with the License. * You may download copy of Osclass at * * https://osclass-classifieds.com/download * * Do not edit or add to this file if you wish to upgrade Osclass to newer * versions in the future. Software is distributed on an "AS IS" basis, without * warranties or conditions of any kind, either express or implied. Do not remove * this NOTICE section as it contains license information and copyrights. */ class CAdminAppearance extends AdminSecBaseModel { function __construct() { parent::__construct(); } //Business Layer... function doModel() { parent::doModel(); //specific things for this class switch ($this->action) { case('add'): $this->doView("appearance/add.php"); break; case('add_post'): if( defined('DEMO') ) { osc_add_flash_warning_message( _m("This action can't be done because it's a demo site"), 'admin'); $this->redirectTo(osc_admin_base_url(true) . '?page=appearance'); } osc_csrf_check(); $filePackage = Params::getFiles('package'); if(isset($filePackage['size']) && $filePackage['size']!=0) { $path = osc_themes_path(); (int) $status = osc_unzip_file($filePackage['tmp_name'], $path); @unlink($filePackage['tmp_name']); } else { $status = 3; } switch ($status) { case(0): $msg = _m('The theme folder is not writable'); osc_add_flash_error_message($msg, 'admin'); break; case(1): $msg = _m('The theme has been installed correctly'); osc_add_flash_ok_message($msg, 'admin'); break; case(2): $msg = _m('The zip file is not valid'); osc_add_flash_error_message($msg, 'admin'); break; case(3): $msg = _m('No file was uploaded'); osc_add_flash_error_message($msg, 'admin'); $this->redirectTo(osc_admin_base_url(true)."?page=appearance&action=add"); break; case(-1): default: $msg = _m('There was a problem adding the theme'); osc_add_flash_error_message($msg, 'admin'); break; } $this->redirectTo( osc_admin_base_url(true) . "?page=appearance" ); break; case('delete'): if( defined('DEMO') ) { osc_add_flash_warning_message( _m("This action can't be done because it's a demo site"), 'admin'); $this->redirectTo(osc_admin_base_url(true) . '?page=appearance'); } osc_csrf_check(); $theme = Params::getParam('webtheme'); if($theme!='') { if($theme!= osc_current_web_theme()) { if(file_exists(osc_content_path() . "themes/" . $theme . "/functions.php")) { include osc_content_path() . "themes/" . $theme . "/functions.php"; } osc_run_hook("theme_delete_".$theme); if(osc_deleteDir(osc_content_path()."themes/".$theme."/")) { osc_add_flash_ok_message(_m("Theme removed successfully"), "admin"); } else { osc_add_flash_error_message(_m("There was a problem removing the theme"), "admin"); } } else { osc_add_flash_error_message(_m("Current theme can not be deleted"), "admin"); } } else { osc_add_flash_error_message(_m("No theme selected"), "admin"); } $this->redirectTo( osc_admin_base_url(true) . "?page=appearance" ); break; /* widgets */ case('widgets'): $info = WebThemes::newInstance()->loadThemeInfo(osc_theme()); $this->_exportVariableToView("info", $info); $this->doView('appearance/widgets.php'); break; case('add_widget'): $this->doView('appearance/add_widget.php'); break; case('edit_widget'): $id = Params::getParam('id'); $widget = Widget::newInstance()->findByPrimaryKey($id); $this->_exportVariableToView("widget", $widget); $this->doView('appearance/add_widget.php'); break; case('delete_widget'): osc_csrf_check(); Widget::newInstance()->delete( array('pk_i_id' => Params::getParam('id') ) ); osc_add_flash_ok_message( _m('Widget removed correctly'), 'admin'); $this->redirectTo( osc_admin_base_url(true) . "?page=appearance&action=widgets" ); break; case('edit_widget_post'): osc_csrf_check(); if(!osc_validate_text(Params::getParam("description"))) { osc_add_flash_error_message( _m('Description field is required'), 'admin'); $this->redirectTo( osc_admin_base_url(true) . "?page=appearance&action=widgets" ); } $res = Widget::newInstance()->update( array( 's_description' => Params::getParam('description'), 's_content' => Params::getParam('content', false, false) ), array('pk_i_id' => Params::getParam('id') ) ); if( $res ) { osc_add_flash_ok_message( _m('Widget updated correctly'), 'admin'); } else { osc_add_flash_error_message( _m('Widget cannot be updated correctly'), 'admin'); } $this->redirectTo( osc_admin_base_url(true) . "?page=appearance&action=widgets" ); break; case('add_widget_post'): osc_csrf_check(); if(!osc_validate_text(Params::getParam("description"))) { osc_add_flash_error_message( _m('Description field is required'), 'admin'); $this->redirectTo( osc_admin_base_url(true) . "?page=appearance&action=widgets" ); } Widget::newInstance()->insert( array( 's_location' => Params::getParam('location'), 'e_kind' => 'html', 's_description' => Params::getParam('description'), 's_content' => Params::getParam('content', false, false) ) ); osc_add_flash_ok_message( _m('Widget added correctly'), 'admin'); $this->redirectTo( osc_admin_base_url(true) . "?page=appearance&action=widgets" ); break; /* /widget */ case('activate'): osc_csrf_check(); osc_set_preference('theme', Params::getParam('theme')); osc_add_flash_ok_message( _m('Theme activated correctly'), 'admin'); osc_run_hook("theme_activate", Params::getParam('theme')); $this->redirectTo( osc_admin_base_url(true) . "?page=appearance" ); break; case('render'): if(Params::existParam('route')) { $routes = Rewrite::newInstance()->getRoutes(); $rid = Params::getParam('route'); $file = '../'; if(isset($routes[$rid]) && isset($routes[$rid]['file'])) { $file = $routes[$rid]['file']; } } else { // DEPRECATED: Disclosed path in URL is deprecated, use routes instead // This will be REMOVED in 3.6 $file = Params::getParam('file'); // We pass the GET variables (in case we have somes) if(preg_match('|(.+?)\?(.*)|', $file, $match)) { $file = $match[1]; if(preg_match_all('|&([^=]+)=([^&]*)|', urldecode('&'.$match[2].'&'), $get_vars)) { for($var_k=0;$var_k<count($get_vars[1]);$var_k++) { Params::setParam($get_vars[1][$var_k], $get_vars[2][$var_k]); } } } else { $file = Params::getParam('file'); }; } if(strpos($file, '../')!==false || strpos($file, '..\\')!==false || !file_exists(osc_base_path() . $file)) { osc_add_flash_warning_message(__('Error loading theme custom file'), 'admin'); }; $this->_exportVariableToView('file', osc_base_path() . $file); $this->doView('appearance/view.php'); break; case('customization'): $this->doView('appearance/customization.php'); break; case('customization_update'): osc_csrf_check(); $error = ''; $iUpdated = 0; $sCustomCss = Params::getParam('customCss', false, false); $sCustomCssHook = Params::getParam('customCssHook'); $sCustomHtml = Params::getParam('customHtml', false, false); $sCustomHtmlHook = Params::getParam('customHtmlHook'); $sCustomJs = Params::getParam('customJs', false, false); $sCustomJsHook = Params::getParam('customJsHook'); $iUpdated += osc_set_preference('custom_css', $sCustomCss); $iUpdated += osc_set_preference('custom_css_hook', $sCustomCssHook); $iUpdated += osc_set_preference('custom_js', $sCustomJs); $iUpdated += osc_set_preference('custom_js_hook', $sCustomJsHook); $iUpdated += osc_set_preference('custom_html', $sCustomHtml); $iUpdated += osc_set_preference('custom_html_hook', $sCustomHtmlHook); if( $iUpdated > 0 ) { if( $error != '' ) { osc_add_flash_error_message( $error . "</p><p>" . _m('Customization settings have been updated'), 'admin'); } else { osc_add_flash_ok_message( _m('Customization settings have been updated'), 'admin'); } } else if($error != '') { osc_add_flash_error_message( $error , 'admin'); } $this->redirectTo(osc_admin_base_url(true) . '?page=appearance&action=customization'); break; default: if(Params::getParam('marketError') > 0) { osc_add_flash_warning_message(sprintf(__('There was problem with update: [%s] %s. You may download update manually at: %s'), Params::getParam('marketError'), Params::getParam('message'), Params::getParam('slug')), 'admin'); } if(Params::getParam('checkUpdated') != '') { osc_admin_toolbar_update_themes(true); } $themes = WebThemes::newInstance()->getListThemes(); //preparing variables for the view $this->_exportVariableToView("themes", $themes); $this->doView('appearance/index.php'); break; } } //hopefully generic... function doView($file) { osc_run_hook("before_admin_html"); osc_current_admin_theme_path($file); Session::newInstance()->_clearVariables(); osc_run_hook("after_admin_html"); } } /* file end: ./oc-admin/appearance.php */
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.3 |
proxy
|
phpinfo
|
ÐаÑтройка