PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/globalclassified.kerihosting.com/oc-admin/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/globalclassified.kerihosting.com/oc-admin/settings.php |
<?php if ( ! defined('ABS_PATH')) exit('ABS_PATH is not loaded. Direct access is not allowed.'); /* * Copyright 2014 Osclass * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ class CAdminSettings extends AdminSecBaseModel { //Business Layer... function doModel() { switch($this->action) { case('advanced'): case('advanced_post'): case('advanced_cache_flush'): require_once(osc_admin_base_path() . 'controller/settings/advanced.php'); $do = new CAdminSettingsAdvanced(); break; case('comments'): case('comments_post'): require_once(osc_admin_base_path() . 'controller/settings/comments.php'); $do = new CAdminSettingsComments(); break; case ('locations'): require_once(osc_admin_base_path() . 'controller/settings/locations.php'); $do = new CAdminSettingsLocations(); break; case('permalinks'): case('permalinks_post'): require_once(osc_admin_base_path() . 'controller/settings/permalinks.php'); $do = new CAdminSettingsPermalinks(); break; case('spamNbots'): case('akismet_post'): case('recaptcha_post'): require_once(osc_admin_base_path() . 'controller/settings/spamnbots.php'); $do = new CAdminSettingsSpamnBots(); break; case('currencies'): require_once(osc_admin_base_path() . 'controller/settings/currencies.php'); $do = new CAdminSettingsCurrencies(); break; case('mailserver'): case('mailserver_post'): require_once(osc_admin_base_path() . 'controller/settings/mailserver.php'); $do = new CAdminSettingsMailserver(); break; case('media'): case('media_post'): case('images_post'): require_once(osc_admin_base_path() . 'controller/settings/media.php'); $do = new CAdminSettingsMedia(); break; case('latestsearches'): case('latestsearches_post'): require_once(osc_admin_base_path() . 'controller/settings/latestsearches.php'); $do = new CAdminSettingsLatestSearches(); break; case('update'): case('check_updates'): default: require_once(osc_admin_base_path() . 'controller/settings/main.php'); $do = new CAdminSettingsMain(); break; } $do->doModel(); } } /* file end: ./oc-admin/settings.php */