Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * FecShop file. * * @link http://www.fecshop.com/ * @copyright Copyright (c)..
Decoded Output download
<?php
/**
* FecShop file.
*
* @link http://www.fecshop.com/
* @copyright Copyright (c) 2016 FecShop Software LLC
* @license http://www.fecshop.com/license/
*/
namespace fecshopppppadmin\modules\Configlock\search;
use fec\helpers\CUrl;
use fec\helpers\CRequest;
use fecshopppppadmin\interfacesase\AppadminbaseBlockEditInterface;
use fecshopppppadmin\modules\AppadminbaseBlockEdit;
use Yii;
/**
* block cms\staticblock.
* @author Terry Zhao <[email protected]>
* @since 1.0
*/
class Manager extends AppadminbaseBlockEdit implements AppadminbaseBlockEditInterface
{
public $_saveUrl;
//
public $_key = 'search_engine';
public $_type;
protected $_attrArr = [
'mysqlSearch',
'mongoSearch',
'xunSearch',
];
public function init()
{
//
$this->_saveUrl = CUrl::getUrl('config/search/managersave');
$this->_editFormData = 'editFormData';
$this->setService();
$this->_param = CRequest::param();
$this->_one = $this->_service->getByKey([
'key' => $this->_key,
]);
if ($this->_one['value']) {
$this->_one['value'] = unserialize($this->_one['value']);
}
}
// form
public function getLastData()
{
$id = '';
if (isset($this->_one['id'])) {
$id = $this->_one['id'];
}
return [
'id' => $id,
'editBar' => $this->getEditBar(),
'textareas' => $this->_textareas,
'lang_attr' => $this->_lang_attr,
'saveUrl' => $this->_saveUrl,
];
}
public function setService()
{
$this->_service = Yii::$service->storeBaseConfig;
}
public function getEditArr()
{
$deleteStatus = Yii::$service->customer->getStatusDeleted();
$activeStatus = Yii::$service->customer->getStatusActive();
return [
//
[
'label' => Yii::$service->page->translate->__('Mysqldb Engine'),
'name' => 'mysqlSearch',
'display' => [
'type' => 'select',
'data' => [
Yii::$app->store->enable => 'Enable',
Yii::$app->store->disable => 'Disable',
],
],
'remark' => 'storeshell`sh fullSearchSync.sh`'
],
[
'label' => Yii::$service->page->translate->__('Mongodb Engine'),
'name' => 'mongoSearch',
'display' => [
'type' => 'select',
'data' => [
Yii::$app->store->enable => 'Enable',
Yii::$app->store->disable => 'Disable',
],
],
'remark' => 'storeshell`sh fullSearchSync.sh`'
],
[
'label' => Yii::$service->page->translate->__('Xunsearch Engine'),
'name' => 'xunSearch',
'display' => [
'type' => 'select',
'data' => [
Yii::$app->store->enable => 'Enable',
Yii::$app->store->disable => 'Disable',
],
],
'remark' => 'storeshell`sh fullSearchSync.sh`'
],
];
}
public function getArrParam(){
$request_param = CRequest::param();
$this->_param = $request_param[$this->_editFormData];
$param = [];
$attrVals = [];
foreach($this->_param as $attr => $val) {
if (in_array($attr, $this->_attrArr)) {
$attrVals[$attr] = $val;
} else {
$param[$attr] = $val;
}
}
$param['value'] = $attrVals;
$param['key'] = $this->_key;
return $param;
}
/**
* save article data, get rewrite url and save to article url key.
*/
public function save()
{
/*
* if attribute is date or date time , db storage format is int ,by frontend pass param is int ,
* you must convert string datetime to time , use strtotime function.
*/
// bdmin_user_id user_id
$this->_service->saveConfig($this->getArrParam());
$errors = Yii::$service->helper->errors->get();
if (!$errors) {
echo json_encode([
'statusCode' => '200',
'message' => Yii::$service->page->translate->__('Save Success'),
]);
exit;
} else {
echo json_encode([
'statusCode' => '300',
'message' => $errors,
]);
exit;
}
}
public function getVal($name, $column){
if (is_object($this->_one) && property_exists($this->_one, $name) && $this->_one[$name]) {
return $this->_one[$name];
}
$content = $this->_one['value'];
if (is_array($content) && !empty($content) && isset($content[$name])) {
return $content[$name];
}
return '';
}
} ?>
Did this file decode correctly?
Original Code
<?php
/**
* FecShop file.
*
* @link http://www.fecshop.com/
* @copyright Copyright (c) 2016 FecShop Software LLC
* @license http://www.fecshop.com/license/
*/
namespace fecshop\app\appadmin\modules\Config\block\search;
use fec\helpers\CUrl;
use fec\helpers\CRequest;
use fecshop\app\appadmin\interfaces\base\AppadminbaseBlockEditInterface;
use fecshop\app\appadmin\modules\AppadminbaseBlockEdit;
use Yii;
/**
* block cms\staticblock.
* @author Terry Zhao <[email protected]>
* @since 1.0
*/
class Manager extends AppadminbaseBlockEdit implements AppadminbaseBlockEditInterface
{
public $_saveUrl;
//
public $_key = 'search_engine';
public $_type;
protected $_attrArr = [
'mysqlSearch',
'mongoSearch',
'xunSearch',
];
public function init()
{
//
$this->_saveUrl = CUrl::getUrl('config/search/managersave');
$this->_editFormData = 'editFormData';
$this->setService();
$this->_param = CRequest::param();
$this->_one = $this->_service->getByKey([
'key' => $this->_key,
]);
if ($this->_one['value']) {
$this->_one['value'] = unserialize($this->_one['value']);
}
}
// form
public function getLastData()
{
$id = '';
if (isset($this->_one['id'])) {
$id = $this->_one['id'];
}
return [
'id' => $id,
'editBar' => $this->getEditBar(),
'textareas' => $this->_textareas,
'lang_attr' => $this->_lang_attr,
'saveUrl' => $this->_saveUrl,
];
}
public function setService()
{
$this->_service = Yii::$service->storeBaseConfig;
}
public function getEditArr()
{
$deleteStatus = Yii::$service->customer->getStatusDeleted();
$activeStatus = Yii::$service->customer->getStatusActive();
return [
//
[
'label' => Yii::$service->page->translate->__('Mysqldb Engine'),
'name' => 'mysqlSearch',
'display' => [
'type' => 'select',
'data' => [
Yii::$app->store->enable => 'Enable',
Yii::$app->store->disable => 'Disable',
],
],
'remark' => 'storeshell`sh fullSearchSync.sh`'
],
[
'label' => Yii::$service->page->translate->__('Mongodb Engine'),
'name' => 'mongoSearch',
'display' => [
'type' => 'select',
'data' => [
Yii::$app->store->enable => 'Enable',
Yii::$app->store->disable => 'Disable',
],
],
'remark' => 'storeshell`sh fullSearchSync.sh`'
],
[
'label' => Yii::$service->page->translate->__('Xunsearch Engine'),
'name' => 'xunSearch',
'display' => [
'type' => 'select',
'data' => [
Yii::$app->store->enable => 'Enable',
Yii::$app->store->disable => 'Disable',
],
],
'remark' => 'storeshell`sh fullSearchSync.sh`'
],
];
}
public function getArrParam(){
$request_param = CRequest::param();
$this->_param = $request_param[$this->_editFormData];
$param = [];
$attrVals = [];
foreach($this->_param as $attr => $val) {
if (in_array($attr, $this->_attrArr)) {
$attrVals[$attr] = $val;
} else {
$param[$attr] = $val;
}
}
$param['value'] = $attrVals;
$param['key'] = $this->_key;
return $param;
}
/**
* save article data, get rewrite url and save to article url key.
*/
public function save()
{
/*
* if attribute is date or date time , db storage format is int ,by frontend pass param is int ,
* you must convert string datetime to time , use strtotime function.
*/
// bdmin_user_id user_id
$this->_service->saveConfig($this->getArrParam());
$errors = Yii::$service->helper->errors->get();
if (!$errors) {
echo json_encode([
'statusCode' => '200',
'message' => Yii::$service->page->translate->__('Save Success'),
]);
exit;
} else {
echo json_encode([
'statusCode' => '300',
'message' => $errors,
]);
exit;
}
}
public function getVal($name, $column){
if (is_object($this->_one) && property_exists($this->_one, $name) && $this->_one[$name]) {
return $this->_one[$name];
}
$content = $this->_one['value'];
if (is_array($content) && !empty($content) && isset($content[$name])) {
return $content[$name];
}
return '';
}
}
Function Calls
None |
Stats
MD5 | 92fe547e67359d79eb998e3b490d3eb2 |
Eval Count | 0 |
Decode Time | 115 ms |