32 lines
546 B
PHP
32 lines
546 B
PHP
<?php
|
|
|
|
namespace bird\config;
|
|
|
|
require_once WD . '/traits/module_config_variable_t.php';
|
|
|
|
use Exception;
|
|
use traits\module_config_variable;
|
|
|
|
class bird_channelId_c
|
|
{
|
|
use module_config_variable;
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function __construct()
|
|
{
|
|
self::setupConfigVariable(
|
|
'bird',
|
|
'channelId',
|
|
'string',
|
|
false,
|
|
null,
|
|
'Default Bird channel identifier',
|
|
'channel_123',
|
|
false,
|
|
''
|
|
);
|
|
}
|
|
}
|