Skip to content

Commit

Permalink
phpthumb dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Laca committed Jun 14, 2016
1 parent bf2595b commit 1208469
Show file tree
Hide file tree
Showing 20 changed files with 12,781 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/php-thumb/cache/index.php
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php
header('Location: /');
exit;
?>
Empty file.
4 changes: 4 additions & 0 deletions lib/php-thumb/cache/source/index.php
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,4 @@
<?php
header('Location: /');
exit;
?>
1,466 changes: 1,466 additions & 0 deletions lib/php-thumb/docs/phpthumb.changelog.txt

Large diffs are not rendered by default.

370 changes: 370 additions & 0 deletions lib/php-thumb/docs/phpthumb.faq.txt

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions lib/php-thumb/docs/phpthumb.license.commercial.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,27 @@
phpThumb() Commercial License
=============================

phpThumb() is licensed under the "GNU Public License" (GPL) and/or the
"phpThumb() Commercial License" (pTCL). This document describes the pTCL.

---------------------------------------------------------------------

The license is non-exclusively granted to a single person or company,
per payment of the license fee, for the lifetime of that person or
company. The license is non-transferrable.

The pTCL grants the licensee the right to use phpThumb() in commercial
closed-source projects. Modifications may be made to phpThumb() with no
obligation to release the modified source code. phpThumb() (or pieces
thereof) may be included in any number of projects authored (in whole
or in part) by the licensee.

The licensee may use any version of phpThumb(), past, present or future,
as is most convenient. This license does not entitle the licensee to
receive any technical support, updates or bugfixes, except as such are
made publicly available to all phpThumb() users.

The licensee may not sub-license phpThumb() itself, meaning that any
commercially released product containing all or parts of phpThumb() must
have added functionality beyond what is available in phpThumb();
phpThumb() itself may not be re-licensed by the licensee.
340 changes: 340 additions & 0 deletions lib/php-thumb/docs/phpthumb.license.txt

Large diffs are not rendered by default.

667 changes: 667 additions & 0 deletions lib/php-thumb/docs/phpthumb.readme.txt

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions lib/php-thumb/fonts/readme.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@
This is the default location for TTF fonts.

You can safely delete or ignore this directory if you're not using
TTF fonts for text watermarks. You can also specify an alternate
directory in phpThumb.config.php
4 changes: 4 additions & 0 deletions lib/php-thumb/images/readme.txt
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,4 @@
If you're looking for the demo images, they can be downloaded from
the bottom of the phpThumb demo page on SourceForge:

http://phpthumb.sourceforge.net/demo/demo/phpThumb.demo.demo.php
11 changes: 11 additions & 0 deletions lib/php-thumb/index.php
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php
if (!file_exists('phpThumb.config.php')) {
if (file_exists('phpThumb.config.php.default')) {
echo 'WARNING! "phpThumb.config.php.default" MUST be renamed to "phpThumb.config.php"';
} else {
echo 'WARNING! "phpThumb.config.php" should exist but does not';
}
exit;
}
header('Location: ../index.php');
?>
254 changes: 254 additions & 0 deletions lib/php-thumb/phpThumb.config.php

Large diffs are not rendered by default.

Loading

0 comments on commit 1208469

Please sign in to comment.