Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# PDF GLPI plugin

[![License](https://img.shields.io/github/license/pluginsGLPI/pdf.svg?&label=License)](https://github.com/pluginsGLPI/pdf/blob/main/LICENSE)
[![Project Status: Active](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![GitHub release](https://img.shields.io/github/release/pluginsGLPI/pdf.svg)](https://github.com/pluginsGLPI/pdf/releases)
[![GitHub build](https://travis-ci.org/pluginsGLPI/pdf.svg?)](https://travis-ci.org/pluginsGLPI/pdf/)

![Screenshot](./docs/screenshots/pdf.gif)

This plugin allow you to select and export informations of an equipment to PDF file.
- equipment types from GLPI
- equipment types from some plugins
- additional data from some plugins
- one or many object(s) in a file

## Download

Releases can be donwloaded on [GitHub](https://github.com/PluginsGLPI/pdf/releases).

## Documentation

We maintain a detailed [documentation](http://glpi-plugins.rtfd.io/en/latest/pdf/index.html).

## Contact

For notices about major changes and general discussion of pdf, subscribe to the [/r/glpi](https://www.reddit.com/r/glpi/) subreddit.
You can also chat with us via [@glpi on Telegram](https://t.me/glpien).

## Professional Services

![GLPI Network](./docs/glpi_network.png "GLPI network")

The GLPI Network services are available through our [Partner's Network](http://www.teclib-edition.com/en/partners/).
We provide special training, bug fixes with editor subscription, contributions for new features, and more.

Obtain a personalized service experience, associated with benefits and opportunities.

## Contributing

* Open a ticket for each bug/feature so it can be discussed
* Follow [development guidelines](http://glpi-developer-documentation.readthedocs.io/en/latest/plugins/index.html)
* Refer to [GitFlow](http://git-flow.readthedocs.io/) process for branching
* Work on a new branch on your own fork
* Open a PR that will be reviewed by a developer

## Copying

* **Code**: you can redistribute it and/or modify it under the terms of the GNU General Public License ([AGPL-3.0](https://www.gnu.org/licenses/agpl-3.0.html)).
Binary file added docs/glpi_network.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screenshots/pdf.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,11 @@ function plugin_version_pdf()
'license' => 'GPLv3+',
'homepage' => 'https://github.com/yllen/pdf',
'minGlpiVersion' => '10.0.0',
'requirements' => ['glpi' => ['min' => '10.0.0',
'max' => '10.1.0',
],
'requirements' => [
'glpi' => [
'min' => '10.0.0',
'max' => '10.0.99',
],
],
];
}
Loading