CI_Xmlrpcs::__construct PHP Метод

__construct() публичный Метод

Initialize XMLRPC class
public __construct ( array $config = [] ) : void
$config array
Результат void
    public function __construct($config = array())
    {
        parent::__construct();
        $this->set_system_methods();
        if (isset($config['functions']) && is_array($config['functions'])) {
            $this->methods = array_merge($this->methods, $config['functions']);
        }
        log_message('info', 'XML-RPC Server Class Initialized');
    }