Skip to content

InlineManual/inlinemanual-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Inline Manual - PHP Library

Official PHP library for the Inline Manual API.

Compatibility:

Compatible with PHP 5.2+

Features:

  • Fetch list of the site topics (tours).
  • Fetch content of the topic.

Example usage:

require(dirname(__FILE__) . '/lib/InlineManual.php');

InlineManual::$site_api_key = 'YOUR_SITE_API_KEY';

try {
  $topics = InlineManual_Site::fetchAllTopics();
  foreach ($topics as $topic) {
    print "$topic->id: $topic->title\n";
  }
}
catch (InlineManual_Error $e) {
  print $e->getMessage();
}

About

PHP library for accessing Inline Manual API.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages