summaryrefslogtreecommitdiff
path: root/lib/floIcon.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-06-26 08:37:07 +0400
committerAndrew Dolgov <[email protected]>2013-06-26 08:37:07 +0400
commitba2463069fc97da3f9b87d549242a44ab91fa1ea (patch)
treee60e202c4c35a6b75a67c64afdb085a5dd8e79a7 /lib/floIcon.php
parentafa1a260d0c47ddb44225786fb3ed892a0a0b428 (diff)
replace floIcon with jimIcon from https://github.com/jimparis/jimIcon
Diffstat (limited to 'lib/floIcon.php')
-rw-r--r--lib/floIcon.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/floIcon.php b/lib/floIcon.php
new file mode 100644
index 000000000..10202862d
--- /dev/null
+++ b/lib/floIcon.php
@@ -0,0 +1,20 @@
+<?
+// Compatibility shim for hooking up jimIcon to Tiny Tiny RSS.
+
+require_once "jimIcon.php";
+
+class floIconIcon {
+ function getImageResource() {
+ return $this->img;
+ }
+}
+
+class floIcon {
+ function readICO($file) {
+ $jim = new jimIcon();
+ $icon = new floIconIcon();
+ $icon->img = $jim->fromiconstring(file_get_contents($file));
+ $this->images = array($icon);
+ }
+}
+?>