| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace phpnotify;
- /**
- * Load library.
- */
- require_once(dirname(__FILE__).'/../sources/phpnotify.php');
- function get_line(string $name): string {
- $content = file_get_contents(dirname(__FILE__).'/'.$name);
- $content = str_replace("\r", '', $content);
- $content = str_replace("\n", '', $content);
- return $content;
- }
- $TOKEN = get_line('.token');
- $URL = get_line('.url');
- $SUBJECT = get_line('.subject');
- $auth = new token_authorization($TOKEN);
- $subject = notifier::create($URL)->access_method($auth)->topic($SUBJECT);
- $subject
- ->new_notification('Sample content')
- ->title('Title of')
- ->click_url('https://cixoelectronic.pl')
- ->add_tag('file_folder')
- ->add_tag('microbe')
- ->priority(4)
- ->send(true);
|