summaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/readme.md b/readme.md
index 69a9095..1065541 100644
--- a/readme.md
+++ b/readme.md
@@ -16,18 +16,18 @@ or
```php
require_once "./SchedulerHelper.php";
-use Scheduler\Helper;
+use DHTMLX_Scheduler\Helper;
```
### How to use
-In order to create a helper object you should call the class constructor `Scheduler\Helper::Helper([$connectorDataArray]):`
+In order to create a helper object you should call the class constructor `DHTMLX_Scheduler\Helper([$connectorDataArray]):`
```php
$helper = new Helper(
array(
- "dbsm": "mysql", // optional, "mysql" by default
- host: "localhost", // optional, "localhost" by default
+ "dbsm" => "mysql", // optional, "mysql" by default
+ "host" => "localhost", // optional, "localhost" by default
"db_name" => "scheduler_helper_db",
"user" => "root",
"password" => "root",