File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
class Env_ver extends AdminController
{
public function __construct()
{
parent::__construct();
}
public function index()
{
show_404();
}
public function activate()
{
$res = modules\whatsapp_api\core\Apiinit::pre_validate($this->input->post('module_name'), $this->input->post('purchase_key'));
if ($res['status']) {
$res['original_url'] = $this->input->post('original_url');
}
echo json_encode($res);
}
public function upgrade_database()
{
$res = modules\whatsapp_api\core\Apiinit::pre_validate($this->input->post('module_name'), $this->input->post('purchase_key'));
if ($res['status']) {
$res['original_url'] = $this->input->post('original_url');
}
echo json_encode($res);
}
}
// End of file Env_ver.php
// Location: ./application/controllers/Env_ver.php
