tjournal/newrphus

This package is abandoned and no longer maintained. No replacement package was suggested.

Newrphus — misprints reporting engine

0.3.0 2018-11-20 13:12 UTC

This package is not auto-updated.

Last update: 2020-01-24 15:49:06 UTC


README

Let users send misprints from your website to Slack.

License Latest Stable Version

Library contains PHP back-end library and Javascript front-end file. You should use both of them to make misprint reporter works.

How it works

When user selects text on a page and presses Ctrl+Enter, the Newrphus sends POST request to url. You can also include userId parameter to track users. Right after the keypress event, it calls callback function, where you can tell user that report was sent.

How to use

  1. Create new Incoming webhook in Slack.

  2. Install PHP library with Composer.

  3. Create backend handler for JS Ajax call.

    $newrphus = new TJ\Newrphus();
    $reviewer->setSlackSettings([
        'endpoint' => 'https://hooks.slack.com/services/ABCDE/QWERTY',
        'channel' => '#misprints'
    ]);
    $reviewer->report($_POST['misprintText'], $_POST['misprintUrl']);

    If you want to customize Slack message, see example.php.

  4. Include js to the page, where you want to track misprints.

    <script src="js/newrphus.js"></script>
    <script>
      newrphus.init({
        url: 'example.php',
        userId: 12345,
        callback: function() {
          alert('Misprint sent');
        }
      });
    </script>
  5. Tell users to select text and press Ctrl+Enter to send report.

Installing via Composer

composer.phar require tjournal/newrphus

Then include Composer's autoloader:

require 'vendor/autoload.php';