Skip to content

Commit 4c9d3a7

Browse files
author
kiamlaluno
committed
Initial port to Backdrop
1 parent 258cabe commit 4c9d3a7

13 files changed

+1307
-2034
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = LF
5+
indent_style = space
6+
indent_size = 2
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[composer.{json,lock}]
12+
indent_size = 4

.gitattributes

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Define text file attributes.
2+
*.config text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
3+
*.css text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
4+
*.dist text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
5+
*.engine text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
6+
*.html text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=html
7+
*.inc text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
8+
*.install text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
9+
*.js text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
10+
*.json text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
11+
*.lock text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
12+
*.map text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
13+
*.md text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
14+
*.module text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
15+
*.php text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
16+
*.po text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
17+
*.profile text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
18+
*.script text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
19+
*.sh text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
20+
*.sql text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
21+
*.svg text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
22+
*.theme text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2 diff=php
23+
*.twig text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
24+
*.txt text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
25+
*.xml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
26+
*.yml text eol=lf whitespace=blank-at-eol,-blank-at-eof,-space-before-tab,tab-in-indent,tabwidth=2
27+
28+
# Define binary file attrributes.
29+
*.eot -text diff
30+
*.exe -text diff
31+
*.gif -text diff
32+
*.gz -text diff
33+
*.ico -text diff
34+
*.jpeg -text diff
35+
*.jpg -text diff
36+
*.otf -text diff
37+
*.phar -text diff
38+
*.png -text diff
39+
*.svgz -text diff
40+
*.ttf -text diff
41+
*.woff -text diff
42+
*.woff2 -text diff

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Ignore the vendor directory.
2+
/vendor/
3+
4+
#Ignore the directories used from frontend tools.
5+
node_modules/
6+
bower_components/
7+
8+
# Ignore Emacs files.
9+
*~
10+
\#*\#
11+
/.emacs.desktop
12+
/.emacs.desktop.lock
13+
*.elc
14+
auto-save-list
15+
tramp
16+
.\#*
17+
18+
# Ignore Sublime Text files.
19+
/*.sublime-project
20+
/*.sublime-workspace
21+
22+
# Ignore the Visual Studio Code settings directory.
23+
/.vscode

LICENSE.txt

+339
Large diffs are not rendered by default.

README.md

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# GraphicsMagick
2+
3+
This module provides an image tooklit that uses the Gmagick PHP extension.
4+
5+
6+
## Requirements
7+
8+
This module requires that the following PHP extensions are installed on your
9+
server:
10+
11+
- [Gmagick](https://www.php.net/manual/en/book.gmagick.php)
12+
13+
This module requires Backdrop 1.22.0, or higher versions, which requires at
14+
least PHP 5.6.
15+
16+
Consult your server administrator or hosting provider if you are unsure about
17+
these requirements.
18+
19+
20+
## Installation
21+
22+
- Install this module using the official Backdrop CMS instructions at
23+
https://docs.backdropcms.org/documentation/extend-with-modules.
24+
25+
- Visit the configuration page under Administration > Configuration > Media >
26+
Image toolkit (admin/config/media/image-toolkit) and change the image toolkit
27+
to GraphicsMagick image manipulation toolkit.
28+
29+
30+
## Issues
31+
32+
Bugs and Feature requests should be reported in the [Issue Queue](https://github.com/backdrop-contrib/graphicsmagick/issues).
33+
34+
35+
## Current Maintainers
36+
37+
- [kiamlaluno](https://github.com/kiamlaluno)
38+
39+
40+
## Credits
41+
42+
- Ported to Backdrop CMS by [kiamlaluno](https://github.com/kiamlaluno), one of
43+
the maintainers for the Drupal module.
44+
- Originally written for Drupal by [Andor](https://www.drupal.org/u/Sweetchuck).
45+
46+
47+
## License
48+
49+
This project is GPL v2 software.
50+
See the LICENSE.txt file in this directory for complete text.

gmagick.info

-4
This file was deleted.

gmagick.install

-32
This file was deleted.

0 commit comments

Comments
 (0)