Coder Social home page Coder Social logo

afterthedeadline's Introduction

After The Deadline API PHP Wrapper

Latest Stable Version Total Downloads Latest Unstable Version License StyleCI

This is a PHP wrapper for the After the Deadline API

After the Deadline is a language checker for the web with: Contextual Spell Checking, Advanced Style Checking and Intelligent Grammar Checking

Installation

Install this package through Composer.

Add this to your composer.json dependencies:

"require": {
   "robbiep/afterthedeadline": "^0.0"
}

Run composer install to download the required files.

Usage

require_once('vendor/autoload.php');

$atd = new \RobbieP\Afterthedeadline\Afterthedeadline(['key' => md5('<unique string>')]);

$atd->checkDocument("I started my schooling as the majority did in my area, at the local primarry school.");

# `getResults` will return an array of objects (Spelling, Grammar, Suggestion) or `false` if there were no results
$results = $atd->getResults();

# (Optionally) you can get formatted text back where the results have been wrapped with 
# <span class="atd-{type}" data-suggestions="{suggestions}">word</span>

echo $atd->getFormatted(); 

Results in:

<div id="atd-content">I started my schooling as the 
<span class="atd-suggestion" data-info="" data-suggestions="['greatest','most']">majority</span> 
did in my area, at the local 
<span class="atd-spelling" data-suggestions="['primary','primacy','primarily','remarry']">primarry</span> 
school.</div>

(Experimental) I've written some basic JavaScript using jQuery and Bootstrap to provide a simple UI to correct/ignore the results

echo $m->getFormatted()->getStylesAndScript(); ?>

Support for other languages

At the moment After the Deadline supports English by default but German de, French fr, Spanish es, Portugese pt

You can either set it in the constructor:

$atd = new \RobbieP\Afterthedeadline\Afterthedeadline(['key' => md5('<unique string>'), 'lang' => 'de']);
# You must use 2 letter country code

Or you can set it inline:

$atd = new \RobbieP\Afterthedeadline\Afterthedeadline(['key' => md5('<unique string>')]);
$atd->setLanguage(\RobbieP\Afterthedeadline\Language::GERMAN);

If you're using it in Laravel...

I've included a ServiceProvider class and a config if you need to change any options. You need to add the ServiceProvider to config/app.php

'providers' => array(
    ...
    RobbieP\Afterthedeadline\AfterthedeadlineServiceProvider::class
)

If you want to use the Facade:

'aliases' => array(
    ...
    'Afterthedeadline' => RobbieP\Afterthedeadline\Facades\Afterthedeadline::class,
)

You will need to publish the config php artisan vendor:publish put your self generated API key in there.

Usage (in Laravel)

$results = \Afterthedeadline::checkDocument("some content")
                            ->getResults();

Contributing

  1. Fork it
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request

afterthedeadline's People

Contributors

dinusuresh avatar robbiepaul avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

dinusuresh

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.