26 lines
625 B
PHP
26 lines
625 B
PHP
<?php
|
|
|
|
namespace slack;
|
|
|
|
require_once WD . '/modules/slack/config/slack_customer_registration_webhook_url_c.php';
|
|
|
|
use slack\config\slack_customer_registration_webhook_url_c;
|
|
use traits\module_config_t;
|
|
|
|
class slack_c
|
|
{
|
|
use module_config_t;
|
|
|
|
public slack_customer_registration_webhook_url_c $customer_registration_webhook_url;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->setupConfig('Slack');
|
|
$this->allowUpdate([
|
|
slack_customer_registration_webhook_url_c::class,
|
|
]);
|
|
|
|
$this->customer_registration_webhook_url = new slack_customer_registration_webhook_url_c();
|
|
}
|
|
}
|