forked from wpdew/OneSignal-Codeigniter-Push-Notification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
23 lines (17 loc) · 672 Bytes
/
config.php
File metadata and controls
23 lines (17 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
define('CMS_URI', 'http://onesignal.loc');
//Login & Password
define('ULOGIN', 'admin');
define('UPASSWORD', 'admin');
define('SITESSH', 'onesignal');
// ID_KEY onesignal.com
define('APPID', 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX');
define('APKEY', 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
// Start massege
define('ACTIONMESSAGE', 'We\'d like to show you notifications for the latest news.');
define('ACCEPTBUTTONTEXT', 'ALLOW');
define('CANCELBUTTONTEXT', 'NO THANKS');
define('URLDEFOLTIMG', 'http://onesignal.loc/img/pic.gif');
define('URLDEFOLTSITE', 'http://onesignal.loc');
?>