13 lines
284 B
PHP
13 lines
284 B
PHP
<?php
|
|
namespace Paheko;
|
|
|
|
$db = DB::getInstance();
|
|
|
|
$db->import(dirname(__FILE__) . "/data/schema.sql");
|
|
|
|
$default_config = json_decode(file_get_contents(__DIR__ . '/config.json'));
|
|
|
|
if ($default_config instanceof \stdClass) {
|
|
$plugin->setConfig($default_config);
|
|
$plugin->save();
|
|
}
|