26 lines
467 B
PHP
26 lines
467 B
PHP
<?php
|
|
|
|
namespace modules\coolify\config;
|
|
|
|
use traits\module_config_variable;
|
|
|
|
class coolify_enabled_c
|
|
{
|
|
use module_config_variable;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->setupConfigVariable(
|
|
'Coolify',
|
|
'enabled',
|
|
'bool',
|
|
false,
|
|
null,
|
|
'Enable Coolify-managed replicated infrastructure targets.',
|
|
'true',
|
|
false,
|
|
'false'
|
|
);
|
|
}
|
|
}
|