Switch dxped-url config to options-table
这个提交包含在:
父节点
07ba06d104
当前提交
f03ad1d0b0
共有 4 个文件被更改,包括 27 次插入 和 3 次删除
|
|
@ -32,7 +32,6 @@ $config['datadir'] = null; // default to install directory
|
||||||
$config['table_name'] = "TABLE_HRD_CONTACTS_V01";
|
$config['table_name'] = "TABLE_HRD_CONTACTS_V01";
|
||||||
$config['locator'] = "";
|
$config['locator'] = "";
|
||||||
$config['display_freq'] = true;
|
$config['display_freq'] = true;
|
||||||
$config['dxped_list'] = "https://cdn.cloudlog.org/read_ng3k_dxped_list.php";
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ class Workabledxcc extends CI_Controller
|
||||||
public function dxcclist()
|
public function dxcclist()
|
||||||
{
|
{
|
||||||
|
|
||||||
$json = file_get_contents($this->config->item('dxped_list') ?? 'https://cdn.cloudlog.org/read_ng3k_dxped_list.php');
|
$json = file_get_contents($this->optionslib->get_option('dxped_url'));
|
||||||
|
|
||||||
// Decode the JSON data into a PHP array
|
// Decode the JSON data into a PHP array
|
||||||
$dataResult = json_decode($json, true);
|
$dataResult = json_decode($json, true);
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This migration adds a dxped_url-key to the options table, to configure
|
||||||
|
* the endpoint, from where the dxpedition-data is being loaded.
|
||||||
|
*/
|
||||||
|
|
||||||
|
class Migration_add_dxped_url_to_option extends CI_Migration {
|
||||||
|
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
$data = array(
|
||||||
|
array('option_name' => "dxped_url", 'option_value' => "https://cdn.cloudlog.org/read_ng3k_dxped_list.php", 'autoload' => "yes"),
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->db->insert_batch('options', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
// No option to down
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -5,7 +5,7 @@ class Workabledxcc_model extends CI_Model
|
||||||
|
|
||||||
public function GetThisWeek()
|
public function GetThisWeek()
|
||||||
{
|
{
|
||||||
$json = file_get_contents($this->config->item('dxped_list') ?? 'https://cdn.cloudlog.org/read_ng3k_dxped_list.php');
|
$json = file_get_contents($this->optionslib->get_option('dxped_url'));
|
||||||
|
|
||||||
// Step 2: Convert the JSON data to an array.
|
// Step 2: Convert the JSON data to an array.
|
||||||
$data = json_decode($json, true);
|
$data = json_decode($json, true);
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用