shell bypass 403
<?php
class optionsGmp extends moduleGmp {
private $_tabs = array();
private $_options = array();
private $_optionsToCategoires = array(); // For faster search
public function init() {
dispatcherGmp::addAction('afterModulesInit', array($this, 'initAllOptValues'));
dispatcherGmp::addFilter('mainAdminTabs', array($this, 'addAdminTab'));
}
public function addAdminTab($tabs) {
$tabs['settings'] = array(
'label' => __('Settings', GMP_LANG_CODE), 'callback' => array($this, 'getSettingsTabContent'), 'fa_icon' => 'fa-gear', 'sort_order' => 60,
);
return $tabs;
}
public function getSettingsTabContent() {
return $this->getView()->getSettingsTabContent();
}
public function initAllOptValues() {
// Just to make sure - that we loaded all default options values
$this->getAll();
}
/**
* This method provides fast access to options model method get
* @see optionsModel::get($d)
*/
public function get($code) {
return $this->getModel()->get($code);
}
/**
* This method provides fast access to options model method get
* @see optionsModel::get($d)
*/
public function isEmpty($code) {
return $this->getModel()->isEmpty($code);
}
public function getAllowedPublicOptions() {
// empty for now
return array();
}
public function getAdminPage() {
if(installerGmp::isUsed()) {
return $this->getView()->getAdminPage();
} else {
return frameGmp::_()->getModule('supsystic_promo')->showWelcomePage();
}
}
public function getTabs() {
if(empty($this->_tabs)) {
$this->_tabs = dispatcherGmp::applyFilters('mainAdminTabs', array(
//'main_page' => array('label' => __('Main Page', GMP_LANG_CODE), 'callback' => array($this, 'getTabContent'), 'wp_icon' => 'dashicons-admin-home', 'sort_order' => 0),
));
foreach($this->_tabs as $tabKey => $tab) {
if(!isset($this->_tabs[ $tabKey ]['url'])) {
$this->_tabs[ $tabKey ]['url'] = $this->getTabUrl( $tabKey );
}
}
uasort($this->_tabs, array($this, 'sortTabsClb'));
}
return $this->_tabs;
}
public function sortTabsClb($a, $b) {
if(isset($a['sort_order']) && isset($b['sort_order'])) {
if($a['sort_order'] > $b['sort_order'])
return 1;
if($a['sort_order'] < $b['sort_order'])
return -1;
}
return 0;
}
public function getTab($tabKey) {
$this->getTabs();
return isset($this->_tabs[ $tabKey ]) ? $this->_tabs[ $tabKey ] : false;
}
public function getTabContent() {
return $this->getView()->getTabContent();
}
public function getActiveTab() {
$reqTab = reqGmp::getVar('tab');
return empty($reqTab) ? 'gmap' : esc_attr($reqTab);
}
public function getTabUrl($tab = '') {
static $mainUrl;
if(empty($mainUrl)) {
$mainUrl = frameGmp::_()->getModule('adminmenu')->getMainLink();
}
return empty($tab) ? $mainUrl : $mainUrl. '&tab='. $tab;
}
public function getRolesList() {
if(!function_exists('get_editable_roles')) {
require_once( ABSPATH . '/wp-admin/includes/user.php' );
}
return get_editable_roles();
}
public function getAvailableUserRolesSelect() {
$rolesList = $this->getRolesList();
$rolesListForSelect = array();
foreach($rolesList as $rKey => $rData) {
$rolesListForSelect[ $rKey ] = $rData['name'];
}
return $rolesListForSelect;
}
public function getAll() {
if(empty($this->_options)) {
$this->_options = dispatcherGmp::applyFilters('optionsDefine', array(
'general' => array(
'label' => __('General', GMP_LANG_CODE),
'opts' => array(
'api_domain' => array('label' => __('API Domain', GMP_LANG_CODE), 'desc' => __('Sets domain for google API scripts', GMP_LANG_CODE), 'def' => '', 'html' => 'selectbox', 'options' => array('https://maps.googleapis.com/' => 'https://maps.googleapis.com/', 'https://maps.google.cn/' => 'https://maps.google.cn/'), 'attrs' => 'style="width: 300px;"'),
'user_api_key' => array('label' => __('User API key', GMP_LANG_CODE), 'desc' => __("You can use your own Google API key, check the <a href='//supsystic.com/google-maps-api-key/' target='_blank'>instruction</a> how to create it. To use plugin's default API key leave this field blank.", GMP_LANG_CODE), 'def' => '', 'html' => 'text', 'attrs' => 'style="width: 300px;"'),
'send_stats' => array('label' => __('Send usage statistics', GMP_LANG_CODE), 'desc' => __('Send information about what plugin options you prefer to use, this will help us make our solution better for You.', GMP_LANG_CODE), 'def' => '0', 'html' => 'checkboxHiddenVal'),
'add_love_link' => array(
'label' => __('Show promo link', GMP_LANG_CODE),
'desc' => __('To promote our plugin, you can show the promo link below the table, if you don\'t want to show the promo link you can also hide it. You can completely remove the link under the table by purchasing the PRO version of the plugin. Thank you for cooperation!', GMP_LANG_CODE) ,
'def' => '0',
'html' => 'checkboxHiddenVal'
),
'remove_love_link' => array(
'label' => __('Remove promo link', GMP_LANG_CODE),
'desc' => __('If you want to delete promo link below the table from HTML just check this box. Only for PRO users.', GMP_LANG_CODE) ,
'def' => '0',
'html' => 'checkboxHiddenVal',
'pro' => ''
),
'access_roles' => array('label' => __('User role can use plugin', GMP_LANG_CODE), 'desc' => __('User with next roles will have access to whole plugin from admin area.', GMP_LANG_CODE), 'def' => 'administrator', 'html' => 'selectlist', 'options' => array($this, 'getAvailableUserRolesSelect'), 'attrs' => 'style="width: 300px;"', 'pro' => ''),
),
),
));
$isPro = frameGmp::_()->getModule('supsystic_promo')->isPro();
foreach($this->_options as $catKey => $cData) {
foreach($cData['opts'] as $optKey => $opt) {
$this->_optionsToCategoires[ $optKey ] = $catKey;
if(isset($opt['pro']) && !$isPro) {
$this->_options[ $catKey ]['opts'][ $optKey ]['pro'] = frameGmp::_()->getModule('supsystic_promo')->generateMainLink('utm_source=plugin&utm_medium='. $optKey. '&utm_campaign=googlemaps');
}
}
}
$this->getModel()->fillInValues( $this->_options );
}
return $this->_options;
}
public function getFullCat($cat) {
$this->getAll();
return isset($this->_options[ $cat ]) ? $this->_options[ $cat ] : false;
}
public function getCatOpts($cat) {
$opts = $this->getFullCat($cat);
return $opts ? $opts['opts'] : false;
}
}