Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitaliy-orlov/whmcs-slack-notif
https://github.com/vitaliy-orlov/whmcs-slack-notif
notifications php slack whmcs
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vitaliy-orlov/whmcs-slack-notif
- Owner: vitaliy-orlov
- Created: 2016-01-23T07:42:14.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-23T08:08:56.000Z (almost 9 years ago)
- Last Synced: 2023-03-02T16:26:23.607Z (almost 2 years ago)
- Topics: notifications, php, slack, whmcs
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# whmcs-slack-notif
WHMCS hook for ticket open and reply from owner. Also it send push notification into Slack channel
# Installation
Copy needed PHP file into WHMCS directory ```$WHMC_ROOT/includes/hooks```.
# Setting
Each PHP file contations function ```get_options```. You have to fill it with your private data.
Example:
```
function get_options() {
return array(
'url' => 'https://slack.com/api/chat.postMessage',
'channel_tickets' => '000000000',
'token' => 'xxxx-xxxxxxxxx-xxxx',
'admin_user' => 'admin',
'whmcs_host' => 'http://mywhmcs.com/'
);
}
```