[Version] Store version number in the options table
Store version number in the options table so that its easier to update for the frontend rather than the config.php which we don't really want to touch
这个提交包含在:
父节点
cfdbf29c78
当前提交
542f199295
共有 5 个文件被更改,包括 29 次插入 和 4 次删除
|
|
@ -14,7 +14,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
|||
*/
|
||||
|
||||
$config['app_name'] = "Cloudlog";
|
||||
$config['app_version'] = "2.4.3";
|
||||
$config['app_version'] = "2.4.5";
|
||||
$config['directory'] = "logbook";
|
||||
$config['callbook'] = "hamqth"; // Options are hamqth or qrz
|
||||
$config['datadir'] = null; // default to install directory
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ $config['migration_enabled'] = TRUE;
|
|||
| be upgraded / downgraded to.
|
||||
|
|
||||
*/
|
||||
$config['migration_version'] = 129;
|
||||
$config['migration_version'] = 130;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
/*
|
||||
* This migration creates a table called options which will hold global options needed within cloudlog
|
||||
* removing the need for lots of configuration files.
|
||||
*/
|
||||
|
||||
class Migration_add_version_to_config extends CI_Migration {
|
||||
|
||||
public function up()
|
||||
{
|
||||
$data = array(
|
||||
array('option_name' => "version", 'option_value' => "2.4.5", 'autoload' => "yes"),
|
||||
);
|
||||
|
||||
$this->db->insert_batch('options', $data);
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
// No option to down
|
||||
}
|
||||
}
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
<table width="100%">
|
||||
<tr>
|
||||
<td>Version</td>
|
||||
<td><?php echo $this->config->item('app_version')."\n"; ?></td>
|
||||
<td><?php echo $this->optionslib->get_option('version')."\n"; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Language</td>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ defined('BASEPATH') OR exit('No direct script access allowed');
|
|||
*/
|
||||
|
||||
$config['app_name'] = "Cloudlog";
|
||||
$config['app_version'] = "2.4.4";
|
||||
$config['app_version'] = "2.4.5";
|
||||
$config['directory'] = "%directory%";
|
||||
$config['callbook'] = "hamqth"; // Options are hamqth or qrz
|
||||
|
||||
|
|
|
|||
正在加载…
在新工单中引用