diff options
author | Egor <egor.26.93@gmail.com> | 2015-04-20 13:57:16 +0300 |
---|---|---|
committer | Egor <egor.26.93@gmail.com> | 2015-04-20 13:57:16 +0300 |
commit | 067f9e1dbea8755912b181fc74e794c966a4429e (patch) | |
tree | 307a64cbb193ff5412a5aa7d2473c80907d0200b | |
parent | 8ef22b1c7396b182453e142af6d3efe2de3e3f7b (diff) | |
download | scheduler-helper-php-067f9e1dbea8755912b181fc74e794c966a4429e.zip scheduler-helper-php-067f9e1dbea8755912b181fc74e794c966a4429e.tar.gz scheduler-helper-php-067f9e1dbea8755912b181fc74e794c966a4429e.tar.bz2 |
Updated readme file.
-rw-r--r-- | readme.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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", |