Cloudlog/application/migrations/062_add_globalsearch_to_options.php
Peter Goodhall 91f53dddd2 Added Migration to allow Global Search
This will allow code to be added to allow non logged in users to access the search button thats currently controlled via cloudlog.php config file
2021-02-09 17:33:20 +00:00

25 行
无行尾
602 B
PHP

<?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_globalsearch_to_options extends CI_Migration {
public function up()
{
$data = array(
array('option_name' => "global_search", 'option_value' => "false", 'autoload' => "yes"),
);
$this->db->insert_batch('options', $data);
}
public function down()
{
// No option to down
}
}