+
+
\ No newline at end of file
diff --git a/application/model/Access.php b/application/model/Access.php
new file mode 100644
index 0000000..1713877
--- /dev/null
+++ b/application/model/Access.php
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/application/model/Navigation.php b/application/model/Navigation.php
new file mode 100644
index 0000000..cdf9c69
--- /dev/null
+++ b/application/model/Navigation.php
@@ -0,0 +1,288 @@
+_con->fetchAll("SELECT * FROM navigation WHERE parent_id IS NULL ORDER BY sorting");
+ foreach($result as $item)
+ {
+ $subSet = array();
+ $sql = "SELECT * FROM navigation WHERE parent_id = :parentId ORDER BY sorting";
+ $sql = $this->_con->createStatement($sql, array('parentId' => $item['id']));
+
+ $item['children'] = $this->_con->fetchAll($sql);
+ $tidyResult[] = $item;
+ }
+ return $tidyResult;
+ }
+
+ public function getMainItems()
+ {
+ return $this->_con->fetchAll("SELECT id, name FROM navigation WHERE parent_id IS NULL ORDER BY sorting");
+ }
+
+ public function getItem($id)
+ {
+ if($id !== null)
+ {
+ $sql = "SELECT * FROM navigation WHERE id = :id";
+ $sql = $this->_con->createStatement($sql, array('id' => $id));
+ if(!$result = $this->_con->fetchOne($sql))
+ {
+ throw new DidgeridooArtwork_Exception('Item with this id not existent');
+ }
+ }
+ else
+ {
+ $sql = "SHOW COLUMNS FROM navigation";
+ $res = $this->_con->fetchAll($sql);
+ foreach($res as $it)
+ {
+ $result[$it['Field']] = '';
+ }
+ }
+
+ return $result;
+ }
+
+ public function add()
+ {
+ }
+
+ public function delete($id)
+ {
+ $sql = "DELETE FROM navigation WHERE id = :id";
+ $sql = $this->_con->createStatement($sql, array('id' => $id));
+ $this->_con->run($sql);
+ }
+
+ public function move($direction, $id)
+ {
+ $sql = "SELECT sorting, parent_id FROM navigation WHERE id = :id";
+ $sql = $this->_con->createStatement($sql, array('id' => $id));
+
+ if($active = $this->_con->fetchOne($sql))
+ {
+ $parentPart = ($active['parent_id'] === null) ? "parent_id IS NULL" : "parent_id = :parentId";
+
+ if($direction == 'up')
+ {
+ $sql = "SELECT id, sorting FROM navigation
+ WHERE
+ " . $parentPart . "
+ AND sorting < :sorting
+ ORDER BY sorting DESC
+ LIMIT 1
+ ";
+ }
+ else if($direction == 'down')
+ {
+ $sql = "SELECT id, sorting FROM navigation
+ WHERE
+ " . $parentPart . "
+ AND sorting > :sorting
+ ORDER BY sorting ASC
+ LIMIT 1
+ ";
+ }
+ else
+ {
+ throw new DidgeridooArtwork_Exception('Wrong Direction');
+ }
+
+ $sql = $this->_con->createStatement($sql, array(':id' => $id, 'parentId' => $active['parent_id'], 'sorting' => $active['sorting']));
+
+ $passiveItem = $this->_con->fetchOne($sql);
+
+ //updating active item
+ $sql = "UPDATE navigation SET sorting = :sorting WHERE id = :id";
+ $sql = $this->_con->createStatement($sql, array('id' => $id, 'sorting' => $passiveItem['sorting']));
+ $this->_con->run($sql);
+
+ //updating passive item
+ $sql = "UPDATE navigation SET sorting = :sorting WHERE id = :id";
+ $sql = $this->_con->createStatement($sql, array('id' => $passiveItem['id'], 'sorting' => $active['sorting']));
+ $this->_con->run($sql);
+ }
+ else
+ {
+ throw new DidgeridooArtwork_Exception('Wrong Parameters');
+ }
+ }
+
+ public static function buildLink($base, $item, $simpleMode = false)
+ {
+ if($item['link'] !== null)
+ {
+ return $item['link'];
+ }
+
+ $link = $base . '/' . $item['controller'];
+ if($simpleMode)
+ {
+ $link = $item['controller'];
+ }
+
+ if($item['action'] !== null)
+ {
+ $link .= '/' . $item['action'];
+
+ if($simpleMode) return $link;
+
+ if($item['controller'] == 'page')
+ {
+ $link .= '/preview';
+ }
+ }
+
+ return $link;
+ }
+
+ public static function getTitle()
+ {
+
+ if(substr(Katharsis_Request::getControllerName(), 0, 5) == 'admin')
+ {
+ return 'Admin';
+ }
+
+ $con = Katharsis_DatabaseConnector::getConnection();
+
+ if(Katharsis_Request::getControllerName() == 'page')
+ {
+ $sql = "SELECT title FROM page WHERE url = :url";
+ $sql = $con->createStatement($sql, array('url' => Katharsis_Request::getActionName()));
+ if($field = $con->fetchField($sql))
+ {
+ return $field;
+ }
+ }
+
+ $menuItemId = Katharsis_View::getInstance()->activeMenuItem;
+ $sql = "SELECT name FROM navigation WHERE id = :menuItemId";
+ $sql = $con->createStatement($sql, array('menuItemId' => $menuItemId));
+ if($field = $con->fetchField($sql))
+ {
+ return $field;
+ }
+
+ return Katharsis_Registry::getInstance()->defaults['title'];
+ }
+
+ public static function getSubtitle()
+ {
+ $con = Katharsis_DatabaseConnector::getConnection();
+
+ if(Katharsis_Request::getControllerName() == 'page')
+ {
+ $sql = "SELECT subtitle FROM page WHERE url = :url";
+ $sql = $con->createStatement($sql, array('url' => Katharsis_Request::getActionName()));
+ if($field = $con->fetchField($sql))
+ {
+ return $field;
+ }
+ }
+
+ return Katharsis_Registry::getInstance()->defaults['subtitle'];
+ }
+
+ public function getSites()
+ {
+ $sql = "SELECT url FROM page";
+ $sql = $this->_con->createStatement($sql, array('url' => Katharsis_Request::getActionName()));
+ $sites = $this->_con->fetchAll($sql);
+
+ foreach($sites as &$site)
+ {
+ $site = 'page/' . $site['url'];
+ }
+ $sites = array(
+ 'defaults' => explode(", ", Katharsis_Registry::getInstance()->defaults['sites']),
+ 'pages' => $sites
+ );
+
+ return $sites;
+ }
+
+ public function save($params)
+ {
+ $transformed = $this->_transformUrl($params['url'], $params['external']);
+
+ $values = array(
+ 'id' => $params['id'],
+ 'name' => $params['name'],
+ 'parent_id' => $params['parentId'],
+ 'active' => $params['active']
+ );
+
+ $values = array_merge($values, $transformed);
+
+ if(isset($values['id']) && is_numeric($values['id']))
+ {
+ $sql = "UPDATE navigation
+ SET
+ name = :name,
+ controller = :controller,
+ action = :action,
+ link = :link,
+ parent_id = parent_id,
+ active = :active
+ WHERE
+ id = :id
+ ";
+ $sql = $this->_con->createStatement($sql, $values);
+ $this->_con->run($sql);
+ }
+ else
+ {
+ if($values['parent_id'] === null)
+ {
+ $sql = "SELECT max(sorting) + 1 as maxi FROM `navigation` WHERE parent_id IS NULL";
+ }
+ else
+ {
+ $sql = "SELECT max(sorting) + 1 as maxi FROM `navigation` WHERE parent_id = :parentId";
+ $sql = $this->_con->createStatement($sql, array('parentId' => $values['parent_id']));
+ }
+
+
+ $max = $this->_con->fetchField($sql);
+ $max = ($max === null) ? 1 : $max;
+ $values['sorting'] = $max;
+
+ $this->_con->insert('navigation', $values);
+ }
+ }
+
+ protected function _transformUrl($url, $external = null)
+ {
+ $values = array(
+ 'controller' => null,
+ 'action' => null,
+ 'link' => null
+ );
+
+ if($url == '-external-')
+ {
+ $values['link'] = $external;
+ return $values;
+ }
+
+ $e = explode('/', $url);
+ if(array_key_exists(1, $e))
+ {
+ $values['controller'] = $e[0];
+ $values['action'] = $e[1];
+ }
+ else
+ {
+ $values['controller'] = $url;
+ }
+ return $values;
+ }
+}
\ No newline at end of file
diff --git a/application/model/Page.php b/application/model/Page.php
new file mode 100644
index 0000000..e893613
--- /dev/null
+++ b/application/model/Page.php
@@ -0,0 +1,87 @@
+_con->createStatement("SELECT * FROM page WHERE url = :url " . $activeTerm, array("url" => $url));
+ if($result = $this->_con->fetchOne($sql))
+ {
+ return $result['content'];
+ }
+ else
+ {
+ throw new DidgeridooArtwork_Exception('Die von Ihnen angeforderte Seite (Page) "' . $url . '" konnte nicht gefunden werden.');
+ }
+ }
+
+ public function getPages()
+ {
+ $sql = "SELECT id, title, subtitle, url, active FROM page ORDER BY id";
+ return $this->_con->fetchAll($sql);
+ }
+
+ public function getPage($pageId)
+ {
+ $default = $this->_con->getEmptyColumnArray('page');
+
+ if($pageId === null) return $default;
+
+ $sql = "SELECT * FROM page WHERE id = :pageId";
+ $sql = $this->_con->createStatement($sql, array('pageId' => $pageId));
+
+ if($result = $this->_con->fetchOne($sql))
+ {
+ return $result;
+ }
+ return $default;
+ }
+
+ public function save($params)
+ {
+ $values = array(
+ 'title' => $params['title'],
+ 'subtitle' => $params['subtitle'],
+ 'url' => $params['url'],
+ 'content' => $params['content'],
+ 'active' => $params['active']
+ );
+
+ if(isset($params['id']) && is_numeric($params['id']))
+ {
+ $values['id'] = $params['id'];
+ $sql = "UPDATE page
+ SET
+ title = :title,
+ subtitle = :subtitle,
+ url = :url,
+ content = :content,
+ active = :active
+ WHERE
+ id = :id
+ ";
+ $sql = $this->_con->createStatement($sql, $values);
+ $this->_con->run($sql);
+ }
+ else
+ {
+ $this->_con->insert('page', $values);
+ }
+ }
+
+ public function delete($pageId)
+ {
+ $sql = "DELETE FROM page WHERE id = :pageId";
+ $sql = $this->_con->createStatement($sql, array('pageId' => (int) $pageId));
+ $this->_con->run($sql);
+ }
+}
+?>
\ No newline at end of file
diff --git a/application/model/Upload.php b/application/model/Upload.php
new file mode 100644
index 0000000..4aa670f
--- /dev/null
+++ b/application/model/Upload.php
@@ -0,0 +1,79 @@
+_uploadFile($id, $files['small'], $dir . '/small');
+ $this->_uploadFile($id, $files['big'], $dir . '/big', $name);
+
+ return $name;
+ }
+
+ public function category($id, $file)
+ {
+ $dir = getcwd() . '/img/shop/category';
+ return $this->_uploadFile($id, $file, $dir);
+ }
+
+ public function sound($id, $file)
+ {
+ $dir = getcwd() . '/sound';
+ return $this->_uploadFile($id, $file, $dir);
+ }
+
+ public function event($id, $files)
+ {
+ $dir = getcwd() . '/img/event';
+
+ $name = $this->_uploadFile($id, $files['image'], $dir);
+ $this->_uploadFile($id, $files['image_full'], $dir . '/full', $name);
+
+ return $name;
+ }
+
+ public function page($file)
+ {
+ $dir = getcwd() . '/img/page';
+ return $this->_uploadFile(null, $file, $dir, $file['name'] . '-' . time());
+ }
+
+ protected function _uploadFile($id, $file, $dir, $name = null)
+ {
+ if($name === null)
+ {
+ $name = $id . '-' . time();
+ }
+ else
+ {
+ if($nameparts = explode(".", $name))
+ {
+ $name = $nameparts[0];
+ }
+ }
+
+ $handle = new Verot_Upload($file);
+ $handle->file_new_name_body = $name;
+ if ($handle->uploaded)
+ {
+ $handle->Process($dir);
+ if (!$handle->processed)
+ {
+ throw new DidgeridooArtwork_Exception('Datei konnte nicht verschoben werden (' . $handle->error . ').');
+ }
+ $handle->Clean();
+ }
+ else
+ {
+ throw new DidgeridooArtwork_Exception('Datei konnte nicht hochgeladen werden (' . $handle->error . ').');
+ }
+ $returnName = $handle->file_dst_name;
+ return $returnName;
+ }
+}
\ No newline at end of file
diff --git a/application/view/.DS_Store b/application/view/.DS_Store
new file mode 100644
index 0000000..c112b4a
Binary files /dev/null and b/application/view/.DS_Store differ
diff --git a/application/view/Admin/gate.phtml b/application/view/Admin/gate.phtml
new file mode 100644
index 0000000..b1136ec
--- /dev/null
+++ b/application/view/Admin/gate.phtml
@@ -0,0 +1,11 @@
+
+
+
\ No newline at end of file
diff --git a/application/view/Admin/index.phtml b/application/view/Admin/index.phtml
new file mode 100644
index 0000000..6b1b498
--- /dev/null
+++ b/application/view/Admin/index.phtml
@@ -0,0 +1,5 @@
+
+
+ Willkommen im Admin Bereich.
+
+
\ No newline at end of file
diff --git a/application/view/AdminNavigation/edit.phtml b/application/view/AdminNavigation/edit.phtml
new file mode 100644
index 0000000..afc1907
--- /dev/null
+++ b/application/view/AdminNavigation/edit.phtml
@@ -0,0 +1,56 @@
+
+
Navigation/Menüpunkt bearbeiten
+
+
+
\ No newline at end of file
diff --git a/application/view/AdminNavigation/index.phtml b/application/view/AdminNavigation/index.phtml
new file mode 100644
index 0000000..69ac968
--- /dev/null
+++ b/application/view/AdminNavigation/index.phtml
@@ -0,0 +1,111 @@
+
\ No newline at end of file
diff --git a/application/view/AdminPage/edit.phtml b/application/view/AdminPage/edit.phtml
new file mode 100644
index 0000000..50a60dc
--- /dev/null
+++ b/application/view/AdminPage/edit.phtml
@@ -0,0 +1,93 @@
+
+
Page bearbeiten
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/application/view/AdminPage/image.phtml b/application/view/AdminPage/image.phtml
new file mode 100644
index 0000000..63f3eac
--- /dev/null
+++ b/application/view/AdminPage/image.phtml
@@ -0,0 +1,31 @@
+
+
+ Swiss Didgeridoo Artwork
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/application/view/AdminPage/index.phtml b/application/view/AdminPage/index.phtml
new file mode 100644
index 0000000..b7ae699
--- /dev/null
+++ b/application/view/AdminPage/index.phtml
@@ -0,0 +1,57 @@
+
\ No newline at end of file
diff --git a/application/view/AdminUpload/double.phtml b/application/view/AdminUpload/double.phtml
new file mode 100644
index 0000000..cfa707a
--- /dev/null
+++ b/application/view/AdminUpload/double.phtml
@@ -0,0 +1,34 @@
+
+
Produkt-Bild hinzufügen
+
+
\ No newline at end of file
diff --git a/application/view/AdminUpload/product.phtml b/application/view/AdminUpload/product.phtml
new file mode 100644
index 0000000..cfa707a
--- /dev/null
+++ b/application/view/AdminUpload/product.phtml
@@ -0,0 +1,34 @@
+
+
Produkt-Bild hinzufügen
+
+
\ No newline at end of file
diff --git a/application/view/AdminUpload/simple.phtml b/application/view/AdminUpload/simple.phtml
new file mode 100644
index 0000000..c0878a3
--- /dev/null
+++ b/application/view/AdminUpload/simple.phtml
@@ -0,0 +1,17 @@
+
+
Hochladen
+
+
\ No newline at end of file
diff --git a/application/view/Error/index.phtml b/application/view/Error/index.phtml
new file mode 100644
index 0000000..1dc8194
--- /dev/null
+++ b/application/view/Error/index.phtml
@@ -0,0 +1,4 @@
+
Fehler
+
+ message ?>
+
\ No newline at end of file
diff --git a/application/view/Index/index.phtml b/application/view/Index/index.phtml
new file mode 100644
index 0000000..ae427e8
--- /dev/null
+++ b/application/view/Index/index.phtml
@@ -0,0 +1,15 @@
+
+
+ Swiss Didgeridoo Artwork - Schweizer Holz Didgeridoo bester Qualität
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/application/view/Page/index.phtml b/application/view/Page/index.phtml
new file mode 100644
index 0000000..9a29856
--- /dev/null
+++ b/application/view/Page/index.phtml
@@ -0,0 +1,12 @@
+
+
+ Swiss Didgeridoo Artwork
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/config/dbinit.sql b/config/dbinit.sql
new file mode 100644
index 0000000..f2f5a0d
--- /dev/null
+++ b/config/dbinit.sql
@@ -0,0 +1,216 @@
+-- MySQL dump 10.13 Distrib 5.5.27, for osx10.8 (i386)
+--
+-- Host: localhost Database: kingkoen_didgeridooartwork
+-- ------------------------------------------------------
+-- Server version 5.5.27
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Table structure for table `cart`
+--
+
+DROP TABLE IF EXISTS `cart`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cart` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=7011 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `cart_item`
+--
+
+DROP TABLE IF EXISTS `cart_item`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cart_item` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `cart_id` int(11) NOT NULL,
+ `product_id` int(11) NOT NULL,
+ `amount` int(11) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=7512 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `category`
+--
+
+DROP TABLE IF EXISTS `category`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `category` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `name` varchar(256) NOT NULL,
+ `info` varchar(512) NOT NULL,
+ `parent_id` int(11) DEFAULT NULL,
+ `image` varchar(256) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `event`
+--
+
+DROP TABLE IF EXISTS `event`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `event` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `title` varchar(256) NOT NULL,
+ `description` text NOT NULL,
+ `date` date NOT NULL,
+ `till` date NOT NULL,
+ `image` varchar(256) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `navigation`
+--
+
+DROP TABLE IF EXISTS `navigation`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `navigation` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `name` varchar(255) NOT NULL,
+ `controller` varchar(64) DEFAULT NULL,
+ `action` varchar(64) DEFAULT NULL,
+ `link` varchar(255) DEFAULT NULL,
+ `parent_id` int(11) DEFAULT NULL,
+ `active` tinyint(1) NOT NULL DEFAULT '1',
+ `sorting` int(11) DEFAULT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=69 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `news`
+--
+
+DROP TABLE IF EXISTS `news`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `news` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `subject` varchar(256) NOT NULL,
+ `content` text NOT NULL,
+ `published` date NOT NULL,
+ `till` date NOT NULL DEFAULT '2010-06-22',
+ `active` tinyint(1) NOT NULL DEFAULT '1',
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `order`
+--
+
+DROP TABLE IF EXISTS `order`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `order` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `name` varchar(256) NOT NULL,
+ `price` varchar(32) NOT NULL,
+ `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ `content` text NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=67 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `page`
+--
+
+DROP TABLE IF EXISTS `page`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `page` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `title` varchar(256) NOT NULL,
+ `subtitle` varchar(256) NOT NULL,
+ `url` varchar(256) NOT NULL,
+ `content` text NOT NULL,
+ `active` tinyint(1) NOT NULL DEFAULT '1',
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=36 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `product`
+--
+
+DROP TABLE IF EXISTS `product`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `product` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `name` varchar(256) NOT NULL,
+ `description` varchar(512) NOT NULL,
+ `price` decimal(10,2) NOT NULL,
+ `category_id` int(11) NOT NULL,
+ `soundfile` varchar(256) DEFAULT NULL,
+ `active` tinyint(1) NOT NULL DEFAULT '0',
+ `info1` varchar(512) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `product_detail`
+--
+
+DROP TABLE IF EXISTS `product_detail`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `product_detail` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `name` varchar(256) NOT NULL,
+ `value` text NOT NULL,
+ `product_id` int(11) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=671 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `product_image`
+--
+
+DROP TABLE IF EXISTS `product_image`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `product_image` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `file` varchar(128) NOT NULL,
+ `product_id` int(11) NOT NULL,
+ `default` tinyint(1) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM AUTO_INCREMENT=181 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
+/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
+/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
+
+-- Dump completed on 2013-07-08 20:51:41
diff --git a/library/.DS_Store b/library/.DS_Store
new file mode 100644
index 0000000..f4f97c3
Binary files /dev/null and b/library/.DS_Store differ
diff --git a/library/DidgeridooArtwork/.DS_Store b/library/DidgeridooArtwork/.DS_Store
new file mode 100644
index 0000000..cb4bc58
Binary files /dev/null and b/library/DidgeridooArtwork/.DS_Store differ
diff --git a/library/DidgeridooArtwork/Controller/.DS_Store b/library/DidgeridooArtwork/Controller/.DS_Store
new file mode 100644
index 0000000..a729434
Binary files /dev/null and b/library/DidgeridooArtwork/Controller/.DS_Store differ
diff --git a/library/DidgeridooArtwork/Controller/Plugin/Access.php b/library/DidgeridooArtwork/Controller/Plugin/Access.php
new file mode 100644
index 0000000..f31319a
--- /dev/null
+++ b/library/DidgeridooArtwork/Controller/Plugin/Access.php
@@ -0,0 +1,17 @@
+defaults = $ini;
+
+ $view = Katharsis_View::getInstance();
+ $view->defaults = $ini;
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Controller/Plugin/Navigation.php b/library/DidgeridooArtwork/Controller/Plugin/Navigation.php
new file mode 100644
index 0000000..1d685b7
--- /dev/null
+++ b/library/DidgeridooArtwork/Controller/Plugin/Navigation.php
@@ -0,0 +1,39 @@
+mainNavigationItems = $this->_con->fetchAll($sql);
+
+ $sql = "SELECT id, parent_id, controller, action FROM navigation WHERE (action = :action AND controller = :controller) OR (action IS NULL AND controller = :controller)";
+ $sql = $this->_con->createStatement($sql, array(
+ 'controller' => Katharsis_Request::getControllerName(),
+ 'action' => Katharsis_Request::getActionName()
+ ));
+
+ if($row = $this->_con->fetchOne($sql))
+ {
+ $activeItemId = ($row['parent_id'] === null) ? $row['id'] : $row['parent_id'];
+
+ $view->activeMenuItem = $activeItemId;
+
+ $sql = "SELECT id, name, controller, action, link FROM navigation WHERE parent_id = :parentId ORDER BY sorting";
+ $sql = $this->_con->createStatement($sql, array('parentId' => $activeItemId));
+ $view->subNavigationItems = $this->_con->fetchAll($sql);
+
+ if($row['parent_id'] !== null)
+ {
+ $view->activeSubMenuItem = $row['id'];
+ }
+ else
+ {
+ $actionpart = ($row['action'] === null) ? ' action IS NULL ' : ' action = :action';
+ $sql = "SELECT id FROM navigation WHERE controller = :controller AND " . $actionpart . " AND parent_id IS NOT NULL";
+ $sql = $this->_con->createStatement($sql, array('controller' => $row['controller'], 'action' => $row['action']));
+ $view->activeSubMenuItem = $this->_con->fetchField($sql);
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Controller/Plugin/Notice.php b/library/DidgeridooArtwork/Controller/Plugin/Notice.php
new file mode 100644
index 0000000..fee3b08
--- /dev/null
+++ b/library/DidgeridooArtwork/Controller/Plugin/Notice.php
@@ -0,0 +1,9 @@
+notices = DidgeridooArtwork_Notice::get();
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Controller/Plugin/SetNames.php b/library/DidgeridooArtwork/Controller/Plugin/SetNames.php
new file mode 100644
index 0000000..e1a4109
--- /dev/null
+++ b/library/DidgeridooArtwork/Controller/Plugin/SetNames.php
@@ -0,0 +1,11 @@
+_con->run($sql);
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Exception.php b/library/DidgeridooArtwork/Exception.php
new file mode 100644
index 0000000..1f706e5
--- /dev/null
+++ b/library/DidgeridooArtwork/Exception.php
@@ -0,0 +1,16 @@
+_important = $important;
+ parent::__construct($message);
+ }
+
+ public function handle()
+ {
+
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Notice.php b/library/DidgeridooArtwork/Notice.php
new file mode 100644
index 0000000..2264def
--- /dev/null
+++ b/library/DidgeridooArtwork/Notice.php
@@ -0,0 +1,23 @@
+ $item)
+ {
+ $instanceName = "DidgeridooArtwork_Page_Plugin_" . ucfirst($findings[1][$key]);
+ if(!Katharsis_Autoload::findClass($instanceName))
+ {
+ throw new DidgeridooArtwork_Exception('PagePlugin ' . $instanceName . ' konnte nicht gefunden werden.', 1);
+ }
+ $object = new $instanceName;
+ $plugincontent = (string) $object->render(trim($findings[2][$key]));
+
+ $content = preg_replace("~(.*)\{plugin\=" . $findings[1][$key] . "[^\}]*\}(.*)~", '${1}' . $plugincontent . '${2}', $content);
+ }
+
+ return $content;
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Page/Plugin/Abstract.php b/library/DidgeridooArtwork/Page/Plugin/Abstract.php
new file mode 100644
index 0000000..c1e01e3
--- /dev/null
+++ b/library/DidgeridooArtwork/Page/Plugin/Abstract.php
@@ -0,0 +1,19 @@
+_con = Katharsis_DatabaseConnector::getConnection();
+ $this->_view = Katharsis_View::getInstance();
+ $this->init();
+ }
+
+ public function init()
+ {
+ }
+
+ abstract public function render($parameters);
+}
diff --git a/library/DidgeridooArtwork/Page/Plugin/Mail.php b/library/DidgeridooArtwork/Page/Plugin/Mail.php
new file mode 100644
index 0000000..d050dac
--- /dev/null
+++ b/library/DidgeridooArtwork/Page/Plugin/Mail.php
@@ -0,0 +1,8 @@
+_view->render('Plugin/mail');
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Page/Plugin/MiniEventList.php b/library/DidgeridooArtwork/Page/Plugin/MiniEventList.php
new file mode 100644
index 0000000..f542f64
--- /dev/null
+++ b/library/DidgeridooArtwork/Page/Plugin/MiniEventList.php
@@ -0,0 +1,11 @@
+_view->pluginEvents = $event->getEventList();
+
+ return $this->_view->render('Plugin/minieventlist');
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Page/Plugin/MiniNewsList.php b/library/DidgeridooArtwork/Page/Plugin/MiniNewsList.php
new file mode 100644
index 0000000..5e6ac3f
--- /dev/null
+++ b/library/DidgeridooArtwork/Page/Plugin/MiniNewsList.php
@@ -0,0 +1,10 @@
+_view->pluginNews = $news->getActiveNews();
+ return $this->_view->render('Plugin/mininewslist');
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Page/Plugin/Newsletter.php b/library/DidgeridooArtwork/Page/Plugin/Newsletter.php
new file mode 100644
index 0000000..f998dfc
--- /dev/null
+++ b/library/DidgeridooArtwork/Page/Plugin/Newsletter.php
@@ -0,0 +1,8 @@
+_view->render('Plugin/newsletter');
+ }
+}
\ No newline at end of file
diff --git a/library/DidgeridooArtwork/Page/Plugin/ShopVorschau.php b/library/DidgeridooArtwork/Page/Plugin/ShopVorschau.php
new file mode 100644
index 0000000..d982087
--- /dev/null
+++ b/library/DidgeridooArtwork/Page/Plugin/ShopVorschau.php
@@ -0,0 +1,11 @@
+_view->pluginEvents = $event->getEventList();
+
+ return $this->_view->render('Plugin/shopvorschau');
+ }
+}
\ No newline at end of file
diff --git a/library/Verot/Upload.php b/library/Verot/Upload.php
new file mode 100644
index 0000000..40eeef8
--- /dev/null
+++ b/library/Verot/Upload.php
@@ -0,0 +1,4750 @@
+
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @copyright Colin Verot
+ * @package cmf
+ * @subpackage external
+ */
+
+/**
+ * Class upload
+ *
+ * What does it do?
+ *
+ * It manages file uploads for you. In short, it manages the uploaded file,
+ * and allows you to do whatever you want with the file, especially if it
+ * is an image, and as many times as you want.
+ *
+ * It is the ideal class to quickly integrate file upload in your site.
+ * If the file is an image, you can convert, resize, crop it in many ways.
+ * You can also apply filters, add borders, text, watermarks, etc...
+ * That's all you need for a gallery script for instance. Supported formats
+ * are PNG, JPG, GIF and BMP.
+ *
+ * You can also use the class to work on local files, which is especially
+ * useful to use the image manipulation features. The class also supports
+ * Flash uploaders.
+ *
+ * The class works with PHP 4 and 5, and its error messages can
+ * be localized at will.
+ *
+ * How does it work?
+ *
+ * You instanciate the class with the $_FILES['my_field'] array
+ * where my_field is the field name from your upload form.
+ * The class will check if the original file has been uploaded
+ * to its temporary location (alternatively, you can instanciate
+ * the class with a local filename).
+ *
+ * You can then set a number of processing variables to act on the file.
+ * For instance, you can rename the file, and if it is an image,
+ * convert and resize it in many ways.
+ * You can also set what will the class do if the file already exists.
+ *
+ * Then you call the function {@link process} to actually perform the actions
+ * according to the processing parameters you set above.
+ * It will create new instances of the original file,
+ * so the original file remains the same between each process.
+ * The file will be manipulated, and copied to the given location.
+ * The processing variables will be reset once it is done.
+ *
+ * You can repeat setting up a new set of processing variables,
+ * and calling {@link process} again as many times as you want.
+ * When you have finished, you can call {@link clean} to delete
+ * the original uploaded file.
+ *
+ * If you don't set any processing parameters and call {@link process}
+ * just after instanciating the class. The uploaded file will be simply
+ * copied to the given location without any alteration or checks.
+ *
+ * Don't forget to add enctype="multipart/form-data" in your form
+ * tag
+ *
+ * Create a file called upload.php:
+ *
+ *
+ * How to process local files?
+ * Use the class as following, the rest being the same as above:
+ *
+ * $handle = new upload('/home/user/myfile.jpg');
+ *
+ *
+ * How to set the language?
+ * Instantiate the class with a second argument being the language code:
+ *
+ * $handle = new upload($_FILES['image_field'], 'fr_FR');
+ * $handle = new upload('/home/user/myfile.jpg', 'fr_FR');
+ *
+ *
+ * How to output the resulting file or picture directly to the browser?
+ * Simply call {@link process}() without an argument (or with null as first argument):
+ *
forbidden array of forbidden mime-types. wildcard accepted, as in image/* (default: check {@link Init})
+ *
$handle->forbidden = array('application/*');
+ *
+ *
+ *
image_convert if set, image will be converted (possible values : ''|'png'|'jpeg'|'gif'|'bmp'; default: '')
+ *
$handle->image_convert = 'jpg';
+ *
image_background_color if set, will forcibly fill transparent areas with the color, in hexadecimal (default: null)
+ *
$handle->image_background_color = '#FF00FF';
+ *
image_default_color fallback color background color for non alpha-transparent output formats, such as JPEG or BMP, in hexadecimal (default: #FFFFFF)
+ *
$handle->image_default_color = '#FF00FF';
+ *
jpeg_quality sets the compression quality for JPEG images (default: 85)
+ *
$handle->jpeg_quality = 50;
+ *
jpeg_size if set to a size in bytes, will approximate {@link jpeg_quality} so the output image fits within the size (default: null)
+ *
$handle->jpeg_size = 3072;
+ *
+ * The following eight settings can be used to invalidate an upload if the file is an image (note that open_basedir restrictions prevent the use of these settings)
+ *
+ *
image_max_width if set to a dimension in pixels, the upload will be invalid if the image width is greater (default: null)
+ *
$handle->image_max_width = 200;
+ *
image_max_height if set to a dimension in pixels, the upload will be invalid if the image height is greater (default: null)
+ *
$handle->image_max_height = 100;
+ *
image_max_pixels if set to a number of pixels, the upload will be invalid if the image number of pixels is greater (default: null)
+ *
$handle->image_max_pixels = 50000;
+ *
image_max_ratio if set to a aspect ratio (width/height), the upload will be invalid if the image apect ratio is greater (default: null)
+ *
$handle->image_max_ratio = 1.5;
+ *
image_min_width if set to a dimension in pixels, the upload will be invalid if the image width is lower (default: null)
+ *
$handle->image_min_width = 100;
+ *
image_min_height if set to a dimension in pixels, the upload will be invalid if the image height is lower (default: null)
+ *
$handle->image_min_height = 500;
+ *
image_min_pixels if set to a number of pixels, the upload will be invalid if the image number of pixels is lower (default: null)
+ *
$handle->image_min_pixels = 20000;
+ *
image_min_ratio if set to a aspect ratio (width/height), the upload will be invalid if the image apect ratio is lower (default: null)
+ *
$handle->image_min_ratio = 0.5;
+ *
+ *
+ *
image_resize determines is an image will be resized (default: false)
+ *
$handle->image_resize = true;
+ *
+ * The following variables are used only if {@link image_resize} == true
+ *
image_ratio if true, resize image conserving the original sizes ratio, using {@link image_x} AND {@link image_y} as max sizes if true (default: false)
+ *
$handle->image_ratio = true;
+ *
image_ratio_crop if true, resize image conserving the original sizes ratio, using {@link image_x} AND {@link image_y} as max sizes, and cropping excedent to fill the space. setting can also be a string, with one or more from 'TBLR', indicating which side of the image will be kept while cropping (default: false)
+ *
$handle->image_ratio_crop = true;
+ *
image_ratio_fill if true, resize image conserving the original sizes ratio, using {@link image_x} AND {@link image_y} as max sizes, fitting the image in the space and coloring the remaining space. setting can also be a string, with one or more from 'TBLR', indicating which side of the space the image will be in (default: false)
+ *
$handle->image_ratio_fill = true;
+ *
image_ratio_no_zoom_in same as {@link image_ratio}, but won't resize if the source image is smaller than {@link image_x} x {@link image_y} (default: false)
+ *
$handle->image_ratio_no_zoom_in = true;
+ *
image_ratio_no_zoom_out same as {@link image_ratio}, but won't resize if the source image is bigger than {@link image_x} x {@link image_y} (default: false)
+ *
$handle->image_ratio_no_zoom_out = true;
+ *
image_ratio_x if true, resize image, calculating {@link image_x} from {@link image_y} and conserving the original sizes ratio (default: false)
+ *
$handle->image_ratio_x = true;
+ *
image_ratio_y if true, resize image, calculating {@link image_y} from {@link image_x} and conserving the original sizes ratio (default: false)
+ *
$handle->image_ratio_y = true;
+ *
image_ratio_pixels if set to a long integer, resize image, calculating {@link image_y} and {@link image_x} to match a the number of pixels (default: false)
+ *
$handle->image_ratio_pixels = 25000;
+ *
+ * The following image manipulations require GD2+
+ *
+ *
image_brightness if set, corrects the brightness. value between -127 and 127 (default: null)
+ *
$handle->image_brightness = 40;
+ *
image_contrast if set, corrects the contrast. value between -127 and 127 (default: null)
+ *
$handle->image_contrast = 50;
+ *
image_tint_color if set, will tint the image with a color, value as hexadecimal #FFFFFF (default: null)
+ *
$handle->image_tint_color = '#FF0000';
+ *
image_overlay_color if set, will add a colored overlay, value as hexadecimal #FFFFFF (default: null)
+ *
$handle->image_overlay_color = '#FF0000';
+ *
image_overlay_percent used when {@link image_overlay_color} is set, determines the opacity (default: 50)
+ *
$handle->image_overlay_percent = 20;
+ *
image_negative inverts the colors in the image (default: false)
+ *
$handle->image_negative = true;
+ *
image_greyscale transforms an image into greyscale (default: false)
+ *
$handle->image_greyscale = true;
+ *
image_threshold applies a threshold filter. value between -127 and 127 (default: null)
+ *
$handle->image_threshold = 20;
+ *
+ *
+ *
image_text creates a text label on the image, value is a string, with eventual replacement tokens (default: null)
+ *
$handle->image_text = 'test';
+ *
image_text_direction text label direction, either 'h' horizontal or 'v' vertical (default: 'h')
+ *
$handle->image_text_direction = 'v';
+ *
image_text_color text color for the text label, in hexadecimal (default: #FFFFFF)
+ *
$handle->image_text_color = '#FF0000';
+ *
image_text_percent text opacity on the text label, integer between 0 and 100 (default: 100)
+ *
$handle->image_text_percent = 50;
+ *
image_text_background text label background color, in hexadecimal (default: null)
+ *
$handle->image_text_background = '#FFFFFF';
+ *
image_text_background_percent text label background opacity, integer between 0 and 100 (default: 100)
+ *
$handle->image_text_background_percent = 50;
+ *
image_text_font built-in font for the text label, from 1 to 5. 1 is the smallest (default: 5)
+ *
$handle->image_text_font = 4;
+ *
image_text_x absolute text label position, in pixels from the left border. can be negative (default: null)
+ *
$handle->image_text_x = 5;
+ *
image_text_y absolute text label position, in pixels from the top border. can be negative (default: null)
+ *
$handle->image_text_y = 5;
+ *
image_text_position text label position withing the image, a combination of one or two from 'TBLR': top, bottom, left, right (default: null)
+ *
$handle->image_text_position = 'LR';
+ *
image_text_padding text label padding, in pixels. can be overridden by {@link image_text_padding_x} and {@link image_text_padding_y} (default: 0)
+ *
$handle->image_text_padding = 5;
+ *
image_text_padding_x text label horizontal padding (default: null)
+ *
$handle->image_text_padding_x = 2;
+ *
image_text_padding_y text label vertical padding (default: null)
+ *
$handle->image_text_padding_y = 10;
+ *
image_text_alignment text alignment when text has multiple lines, either 'L', 'C' or 'R' (default: 'C')
+ *
$handle->image_text_alignment = 'R';
+ *
image_text_line_spacing space between lines in pixels, when text has multiple lines (default: 0)
+ *
image_rotate rotates image. possible values are 90, 180 and 270 (default: null)
+ *
$handle->image_rotate = 90;
+ *
image_crop crops image. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)
+ *
$handle->image_crop = array(50,40,30,20); OR '-20 20%'...
+ *
image_precrop crops image, before an eventual resizing. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)
+ *
$handle->image_precrop = array(50,40,30,20); OR '-20 20%'...
+ *
+ *
+ *
image_bevel adds a bevel border to the image. value is thickness in pixels (default: null)
+ *
$handle->image_bevel = 20;
+ *
image_bevel_color1 top and left bevel color, in hexadecimal (default: #FFFFFF)
+ *
$handle->image_bevel_color1 = '#FFFFFF';
+ *
image_bevel_color2 bottom and right bevel color, in hexadecimal (default: #000000)
+ *
$handle->image_bevel_color2 = '#000000';
+ *
image_border adds a unicolor border to the image. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)
+ *
$handle->image_border = '3px'; OR '-20 20%' OR array(3,2)...
+ *
image_border_color border color, in hexadecimal (default: #FFFFFF)
+ *
$handle->image_border_color = '#FFFFFF';
+ *
image_frame type of frame: 1=flat 2=crossed (default: null)
+ *
$handle->image_frame = 2;
+ *
image_frame_colors list of hex colors, in an array or a space separated string (default: '#FFFFFF #999999 #666666 #000000')
+ *
image_watermark adds a watermark on the image, value is a local filename. accepted files are GIF, JPG, BMP, PNG and PNG alpha (default: null)
+ *
$handle->image_watermark = 'watermark.png';
+ *
image_watermark_x absolute watermark position, in pixels from the left border. can be negative (default: null)
+ *
$handle->image_watermark_x = 5;
+ *
image_watermark_y absolute watermark position, in pixels from the top border. can be negative (default: null)
+ *
$handle->image_watermark_y = 5;
+ *
image_watermark_position watermark position withing the image, a combination of one or two from 'TBLR': top, bottom, left, right (default: null)
+ *
$handle->image_watermark_position = 'LR';
+ *
+ *
+ *
image_reflection_height if set, a reflection will be added. Format is either in pixels or percentage, such as 40, '40', '40px' or '40%' (default: null)
+ *
$handle->image_reflection_height = '25%';
+ *
image_reflection_space space in pixels between the source image and the reflection, can be negative (default: null)
+ *
$handle->image_reflection_space = 3;
+ *
image_reflection_color reflection background color, in hexadecimal. Now deprecated in favor of {@link image_default_color} (default: #FFFFFF)
+ *
$handle->image_default_color = '#000000';
+ *
image_reflection_opacity opacity level at which the reflection starts, integer between 0 and 100 (default: 60)
+ *
$handle->image_reflection_opacity = 60;
+ *
+ *
+ * Values that can be read before calling {@link process}()
+ *
+ *
file_src_name Source file name
+ *
file_src_name_body Source file name body
+ *
file_src_name_ext Source file extension
+ *
file_src_pathname Source file complete path and name
+ *
file_src_mime Source file mime type
+ *
file_src_size Source file size in bytes
+ *
file_src_error Upload error code
+ *
file_is_image Boolean flag, true if the file is a supported image type
+ *
+ * If the file is a supported image type (and open_basedir restrictions allow it)
+ *
+ *
image_src_x Source file width in pixels
+ *
image_src_y Source file height in pixels
+ *
image_src_pixels Source file number of pixels
+ *
image_src_type Source file type (png, jpg, gif or bmp)
+ *
image_src_bits Source file color depth
+ *
+ *
+ * Values that can be read after calling {@link process}()
+ *
+ *
file_dst_path Destination file path
+ *
file_dst_name_body Destination file name body
+ *
file_dst_name_ext Destination file extension
+ *
file_dst_name Destination file name
+ *
file_dst_pathname Destination file complete path and name
+ *
+ * If the file is a supported image type
+ *
+ *
image_dst_x Destination file width
+ *
image_dst_y Destination file height
+ *
image_convert Destination file format
+ *
+ *
+ * Requirements
+ *
+ * Most of the image operations require GD. GD2 is greatly recommended
+ *
+ * The class is compatible with PHP 4.3+, and compatible with PHP5
+ *
+ * Changelog
+ *
+ *
v 0.29 03/02/2010
+ * - added protection against malicious images
+ * - added zip and torrent MIME type
+ * - replaced split() with explode()
+ * - initialise image_dst_x/y with image_src_x/y
+ * - removed {@link mime_fileinfo}, {@link mime_file}, {@link mime_magic} and {@link mime_getimagesize} from the docs since they are used before {@link process}
+ * - added more extensions and MIME types
+ * - improved MIME type validation
+ * - improved logging
+ *
v 0.28 10/08/2009
+ * - replaced ereg functions to be compatible with PHP 5.3
+ * - added flv MIME type
+ * - improved MIME type detection
+ * - added {@link file_name_body_pre} to prepend a string to the file name
+ * - added {@link mime_fileinfo}, {@link mime_file}, {@link mime_magic} and {@link mime_getimagesize} so that it is possible to deactivate some MIME type checking method
+ * - use exec() rather than shell_exec(), to play better with safe mode
+ * - added some error messages
+ * - fix bug when checking on conditions, {@link processed} wasn't propagated properly
+ *
v 0.27 14/05/2009
+ * - look for the language files directory from __FILE__
+ * - deactivate {@link file_auto_rename} if {@link file_overwrite} is set
+ * - improved transparency replacement for true color images
+ * - fixed calls to newer version of UNIX file utility
+ * - fixed error when using PECL Fileinfo extension in SAFE MODE, and when using the finfo class
+ * - added {@link image_precrop} to crop the image before an eventual resizing
+ *
v 0.26 13/11/2008
+ * - rewrote conversion from palette to true color to handle transparency better
+ * - fixed imagecopymergealpha() when the overlayed image is of wrong dimensions
+ * - fixed imagecreatenew() when the image to create have less than 1 pixels width or height
+ * - rewrote MIME type detection to be more secure and not rely on browser information; now using Fileinfo PECL extension, UNIX file() command, MIME magic, and getimagesize(), in that order
+ * - added support for Flash uploaders
+ * - some bug fixing and error handling
+ *
v 0.25 17/11/2007
+ * - added translation files and mechanism to instantiate the class with a language different from English
+ * - added {@link forbidden} to set an array of forbidden MIME types
+ * - implemented support for simple wildcards in {@link allowed} and {@link forbidden}, such as image/*
+ * - preset the file extension to the desired conversion format when converting an image
+ * - added read and write support for BMP images
+ * - added a flag {@link file_is_image} to determine if the file is a supported image type
+ * - the class now provides some information about the image, before calling {@link process}(). Available are {@link image_src_x}, {@link image_src_y} and the newly introduced {@link image_src_bits}, {@link image_src_pixels} and {@link image_src_type}. Note that this will not work if open_basedir restrictions are in place
+ * - improved logging; now provides useful system information
+ * - added some more pre-processing checks for files that are images: {@link image_max_width}, {@link image_max_height}, {@link image_max_pixels}, {@link image_max_ratio}, {@link image_min_width}, {@link image_min_height}, {@link image_min_pixels} and {@link image_min_ratio}
+ * - added {@link image_ratio_pixels} to resize an image to a number of pixels, keeping aspect ratio
+ * - added {@link image_is_palette} and {@link image_is_transparent} and {@link image_transparent_color} for GIF images
+ * - added {@link image_default_color} to define a fallback color for non alpha-transparent output formats, such as JPEG or BMP
+ * - changed {@link image_background_color}, which now forces transparent areas to be painted
+ * - improved reflections and color overlays so that it works with alpha transparent images
+ * - {@link image_reflection_color} is now deprecated in favour of {@link image_default_color}
+ * - transparent PNGs are now processed in true color, and fully preserving the alpha channel when doing merges
+ * - transparent GIFs are now automatically detected. {@link preserve_transparency} is deprecated
+ * - transparent true color images can be saved as GIF while retaining transparency, semi transparent areas being merged with {@link image_default_color}
+ * - transparent true color images can be saved as JPG/BMP with the semi transparent areas being merged with {@link image_default_color}
+ * - fixed conversion of images to true color
+ * - the class can now output the uploaded files content as the return value of process() if the function is called with an empty or null argumenti, or no argument
+ *
v 0.24 25/05/2007
+ * - added {@link image_background_color}, to set the default background color of an image
+ * - added possibility of using replacement tokens in text labels
+ * - changed default JPEG quality to 85
+ * - fixed a small bug when using greyscale filter and associated filters
+ * - added {@link image_ratio_fill} in order to fit an image within some dimensions and color the remaining space. Very similar to {@link image_ratio_crop}
+ * - improved the recursive creation of directories
+ * - the class now converts palette based images to true colors before doing graphic manipulations
+ *
v 0.23 23/12/2006
+ * - fixed a bug when processing more than once the same uploaded file. If there is an open_basedir restriction, the class now creates a temporary file for the first call to process(). This file will be used for subsequent processes, and will be deleted upon calling clean()
+ *
v 0.22 16/12/2006
+ * - added automatic creation of a temporary file if the upload directory is not within open_basedir
+ * - fixed a bug which was preventing to work on a local file by overwriting it with its processed copy
+ * - added MIME types video/x-ms-wmv and image/x-png and fixed PNG support for IE weird MIME types
+ * - modified {@link image_ratio_crop} so it can accept one or more from string 'TBLR', determining which side of the image is kept while cropping
+ * - added support for multiple lines in the text, using "\n" as a line break
+ * - added {@link image_text_line_spacing} which allow to set the space between several lines of text
+ * - added {@link image_text_alignment} which allow to set the alignment when text has several lines
+ * - {@link image_text_font} can now be set to the path of a GDF font to load external fonts
+ * - added {@link image_reflection_height} to create a reflection of the source image, which height is in pixels or percentage
+ * - added {@link image_reflection_space} to set the space in pixels between the source image and the reflection
+ * - added {@link image_reflection_color} to set the reflection background color
+ * - added {@link image_reflection_opacity} to set the initial level of opacity of the reflection
+ *
v 0.21 30/09/2006
+ * - added {@link image_ratio_crop} which resizes within {@link image_x} and {@link image_y}, keeping ratio, but filling the space by cropping excedent of image
+ * - added {@link mime_check}, which default is true, to set checks against {@link allowed} MIME list
+ * - if MIME is empty, the class now triggers an error
+ * - color #000000 is OK for {@link image_text_color}, and related text transparency bug fixed
+ * - {@link gd_version}() now uses gd_info(), or else phpinfo()
+ * - fixed path issue when the destination path has no trailing slash on Windows systems
+ * - removed inline functions to be fully PHP5 compatible
+ *
v 0.20 11/08/2006
+ * - added some more error checking and messages (GD presence, permissions...)
+ * - fix when uploading files without extension
+ * - changed values for {@link image_brightness} and {@link image_contrast} to be between -127 and 127
+ * - added {@link dir_auto_create} to automatically and recursively create destination directory if missing.
+ * - added {@link dir_auto_chmod} to automatically chmod the destination directory if not writeable.
+ * - added {@link dir_chmod} to set the default chmod to use.
+ * - added {@link image_crop} to crop images
+ * - added {@link image_negative} to invert the colors on the image
+ * - added {@link image_greyscale} to turn the image into greyscale
+ * - added {@link image_threshold} to apply a threshold filter on the image
+ * - added {@link image_bevel}, {@link image_bevel_color1} and {@link image_bevel_color2} to add a bevel border
+ * - added {@link image_border} and {@link image_border_color} to add a single color border
+ * - added {@link image_frame} and {@link image_frame_colors} to add a multicolored frame
+ *
v 0.19 29/03/2006
+ * - class is now compatible i18n (thanks Sylwester).
+ * - the class can mow manipulate local files, not only uploaded files (instanciate the class with a local filename).
+ * - {@link file_safe_name} has been improved a bit.
+ * - added {@link image_brightness}, {@link image_contrast}, {@link image_tint_color}, {@link image_overlay_color} and {@link image_overlay_percent} to do color manipulation on the images.
+ * - added {@link image_text} and all derivated settings to add a text label on the image.
+ * - added {@link image_watermark} and all derivated settings to add a watermark image on the image.
+ * - added {@link image_flip} and {@link image_rotate} for more image manipulations
+ * - added {@link jpeg_size} to calculate the JPG compression quality in order to fit within one filesize.
+ *
v 0.18 02/02/2006
+ * - added {@link no_script} to turn dangerous scripts into text files.
+ * - added {@link mime_magic_check} to set the class to use mime_magic.
+ * - added {@link preserve_transparency} *experimental*. Thanks Gregor.
+ * - fixed size and mime checking, wasn't working :/ Thanks Willem.
+ * - fixed memory leak when resizing images.
+ * - when resizing, it is not necessary anymore to set {@link image_convert}.
+ * - il is now possible to simply convert an image, with no resizing.
+ * - sets the default {@link file_max_size} to upload_max_filesize from php.ini. Thanks Edward
+ *
v 0.17 28/05/2005
+ * - the class can be used with any version of GD.
+ * - added security check on the file with a list of mime-types.
+ * - changed the license to GPL v2 only
+ *
v 0.16 19/05/2005
+ * - added {@link file_auto_rename} automatic file renaming if the same filename already exists.
+ * - added {@link file_safe_name} safe formatting of the filename (spaces to _underscores so far).
+ * - added some more error reporting to avoid crash if GD is not present
+ *
v 0.15 16/04/2005
+ * - added JPEG compression quality setting. Thanks Vad
+ *
v 0.14 14/03/2005
+ * - reworked the class file to allow parsing with phpDocumentor
+ *
v 0.13 07/03/2005
+ * - fixed a bug with {@link image_ratio}. Thanks Justin.
+ * - added {@link image_ratio_no_zoom_in} and {@link image_ratio_no_zoom_out}
+ *
v 0.12 21/01/2005
+ * - added {@link image_ratio} to resize within max values, keeping image ratio
+ *
v 0.11 22/08/2003
+ * - update for GD2 (changed imageresized() into imagecopyresampled() and imagecreate() into imagecreatetruecolor())
+ *
+ *
+ * @package cmf
+ * @subpackage external
+ */
+class Verot_Upload {
+
+
+ /**
+ * Class version
+ *
+ * @access public
+ * @var string
+ */
+ var $version;
+
+ /**
+ * Uploaded file name
+ *
+ * @access public
+ * @var string
+ */
+ var $file_src_name;
+
+ /**
+ * Uploaded file name body (i.e. without extension)
+ *
+ * @access public
+ * @var string
+ */
+ var $file_src_name_body;
+
+ /**
+ * Uploaded file name extension
+ *
+ * @access public
+ * @var string
+ */
+ var $file_src_name_ext;
+
+ /**
+ * Uploaded file MIME type
+ *
+ * @access public
+ * @var string
+ */
+ var $file_src_mime;
+
+ /**
+ * Uploaded file size, in bytes
+ *
+ * @access public
+ * @var double
+ */
+ var $file_src_size;
+
+ /**
+ * Holds eventual PHP error code from $_FILES
+ *
+ * @access public
+ * @var string
+ */
+ var $file_src_error;
+
+ /**
+ * Uloaded file name, including server path
+ *
+ * @access private
+ * @var string
+ */
+ var $file_src_pathname;
+
+ /**
+ * Uloaded file name temporary copy
+ *
+ * @access private
+ * @var string
+ */
+ var $file_src_temp;
+
+ /**
+ * Destination file name
+ *
+ * @access private
+ * @var string
+ */
+ var $file_dst_path;
+
+ /**
+ * Destination file name
+ *
+ * @access public
+ * @var string
+ */
+ var $file_dst_name;
+
+ /**
+ * Destination file name body (i.e. without extension)
+ *
+ * @access public
+ * @var string
+ */
+ var $file_dst_name_body;
+
+ /**
+ * Destination file extension
+ *
+ * @access public
+ * @var string
+ */
+ var $file_dst_name_ext;
+
+ /**
+ * Destination file name, including path
+ *
+ * @access private
+ * @var string
+ */
+ var $file_dst_pathname;
+
+ /**
+ * Source image width
+ *
+ * @access private
+ * @var integer
+ */
+ var $image_src_x;
+
+ /**
+ * Source image height
+ *
+ * @access private
+ * @var integer
+ */
+ var $image_src_y;
+
+ /**
+ * Source image color depth
+ *
+ * @access private
+ * @var integer
+ */
+ var $image_src_bits;
+
+ /**
+ * Number of pixels
+ *
+ * @access private
+ * @var long
+ */
+ var $image_src_pixels;
+
+ /**
+ * Type of image (png, gif, jpg or bmp)
+ *
+ * @access private
+ * @var string
+ */
+ var $image_src_type;
+
+ /**
+ * Destination image width
+ *
+ * @access private
+ * @var integer
+ */
+ var $image_dst_x;
+
+ /**
+ * Destination image height
+ *
+ * @access private
+ * @var integer
+ */
+ var $image_dst_y;
+
+ /**
+ * Supported image formats
+ *
+ * @access private
+ * @var array
+ */
+ var $image_supported;
+
+ /**
+ * Flag to determine if the source file is an image
+ *
+ * @access private
+ * @var boolean
+ */
+ var $file_is_image;
+
+ /**
+ * Flag set after instanciating the class
+ *
+ * Indicates if the file has been uploaded properly
+ *
+ * @access public
+ * @var bool
+ */
+ var $uploaded;
+
+ /**
+ * Flag stopping PHP upload checks
+ *
+ * Indicates whether we instanciated the class with a filename, in which case
+ * we will not check on the validity of the PHP *upload*
+ *
+ * This flag is automatically set to true when working on a local file
+ *
+ * Warning: for uploads, this flag MUST be set to false for security reason
+ *
+ * @access public
+ * @var bool
+ */
+ var $no_upload_check;
+
+ /**
+ * Flag set after calling a process
+ *
+ * Indicates if the processing, and copy of the resulting file went OK
+ *
+ * @access public
+ * @var bool
+ */
+ var $processed;
+
+ /**
+ * Holds eventual error message in plain english
+ *
+ * @access public
+ * @var string
+ */
+ var $error;
+
+ /**
+ * Holds an HTML formatted log
+ *
+ * @access public
+ * @var string
+ */
+ var $log;
+
+
+ // overiddable processing variables
+
+
+ /**
+ * Set this variable to replace the name body (i.e. without extension)
+ *
+ * @access public
+ * @var string
+ */
+ var $file_new_name_body;
+
+ /**
+ * Set this variable to append a string to the file name body
+ *
+ * @access public
+ * @var string
+ */
+ var $file_name_body_add;
+
+ /**
+ * Set this variable to prepend a string to the file name body
+ *
+ * @access public
+ * @var string
+ */
+ var $file_name_body_pre;
+
+ /**
+ * Set this variable to change the file extension
+ *
+ * @access public
+ * @var string
+ */
+ var $file_new_name_ext;
+
+ /**
+ * Set this variable to format the filename (spaces changed to _)
+ *
+ * @access public
+ * @var boolean
+ */
+ var $file_safe_name;
+
+ /**
+ * Set this variable to false if you don't want to check the MIME against the allowed list
+ *
+ * This variable is set to true by default for security reason
+ *
+ * @access public
+ * @var boolean
+ */
+ var $mime_check;
+
+ /**
+ * Set this variable to false if you don't want to check the MIME with Fileinfo PECL extension
+ *
+ * You can also set it with the path of the magic database file.
+ * If set to true, the class will try to read the MAGIC environment variable
+ * and if it is empty, will default to '/usr/share/file/magic'
+ * If set to an empty string, it will call finfo_open without the path argument
+ *
+ * This variable is set to true by default for security reason
+ *
+ * @access public
+ * @var boolean
+ */
+ var $mime_fileinfo;
+
+ /**
+ * Set this variable to false if you don't want to check the MIME with UNIX file() command
+ *
+ * This variable is set to true by default for security reason
+ *
+ * @access public
+ * @var boolean
+ */
+ var $mime_file;
+
+ /**
+ * Set this variable to false if you don't want to check the MIME with the magic.mime file
+ *
+ * The function mime_content_type() will be deprecated,
+ * and this variable will be set to false in a future release
+ *
+ * This variable is set to true by default for security reason
+ *
+ * @access public
+ * @var boolean
+ */
+ var $mime_magic;
+
+ /**
+ * Set this variable to false if you don't want to check the MIME with getimagesize()
+ *
+ * The class tries to get a MIME type from getimagesize()
+ * If no MIME is returned, it tries to guess the MIME type from the file type
+ *
+ * This variable is set to true by default for security reason
+ *
+ * @access public
+ * @var boolean
+ */
+ var $mime_getimagesize;
+
+ /**
+ * Set this variable to false if you don't want to turn dangerous scripts into simple text files
+ *
+ * @access public
+ * @var boolean
+ */
+ var $no_script;
+
+ /**
+ * Set this variable to true to allow automatic renaming of the file
+ * if the file already exists
+ *
+ * Default value is true
+ *
+ * For instance, on uploading foo.ext,
+ * if foo.ext already exists, upload will be renamed foo_1.ext
+ * and if foo_1.ext already exists, upload will be renamed foo_2.ext
+ *
+ * Note that this option doesn't have any effect if {@link file_overwrite} is true
+ *
+ * @access public
+ * @var bool
+ */
+ var $file_auto_rename;
+
+ /**
+ * Set this variable to true to allow automatic creation of the destination
+ * directory if it is missing (works recursively)
+ *
+ * Default value is true
+ *
+ * @access public
+ * @var bool
+ */
+ var $dir_auto_create;
+
+ /**
+ * Set this variable to true to allow automatic chmod of the destination
+ * directory if it is not writeable
+ *
+ * Default value is true
+ *
+ * @access public
+ * @var bool
+ */
+ var $dir_auto_chmod;
+
+ /**
+ * Set this variable to the default chmod you want the class to use
+ * when creating directories, or attempting to write in a directory
+ *
+ * Default value is 0777 (without quotes)
+ *
+ * @access public
+ * @var bool
+ */
+ var $dir_chmod;
+
+ /**
+ * Set this variable tu true to allow overwriting of an existing file
+ *
+ * Default value is false, so no files will be overwritten
+ *
+ * @access public
+ * @var bool
+ */
+ var $file_overwrite;
+
+ /**
+ * Set this variable to change the maximum size in bytes for an uploaded file
+ *
+ * Default value is the value upload_max_filesize from php.ini
+ *
+ * @access public
+ * @var double
+ */
+ var $file_max_size;
+
+ /**
+ * Set this variable to true to resize the file if it is an image
+ *
+ * You will probably want to set {@link image_x} and {@link image_y}, and maybe one of the ratio variables
+ *
+ * Default value is false (no resizing)
+ *
+ * @access public
+ * @var bool
+ */
+ var $image_resize;
+
+ /**
+ * Set this variable to convert the file if it is an image
+ *
+ * Possibles values are : ''; 'png'; 'jpeg'; 'gif'; 'bmp'
+ *
+ * Default value is '' (no conversion)
+ * If {@link resize} is true, {@link convert} will be set to the source file extension
+ *
+ * @access public
+ * @var string
+ */
+ var $image_convert;
+
+ /**
+ * Set this variable to the wanted (or maximum/minimum) width for the processed image, in pixels
+ *
+ * Default value is 150
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_x;
+
+ /**
+ * Set this variable to the wanted (or maximum/minimum) height for the processed image, in pixels
+ *
+ * Default value is 150
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_y;
+
+ /**
+ * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y}
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var bool
+ */
+ var $image_ratio;
+
+ /**
+ * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y}
+ *
+ * The image will be resized as to fill the whole space, and excedent will be cropped
+ *
+ * Value can also be a string, one or more character from 'TBLR' (top, bottom, left and right)
+ * If set as a string, it determines which side of the image is kept while cropping.
+ * By default, the part of the image kept is in the center, i.e. it crops equally on both sides
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var mixed
+ */
+ var $image_ratio_crop;
+
+ /**
+ * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y}
+ *
+ * The image will be resized to fit entirely in the space, and the rest will be colored.
+ * The default color is white, but can be set with {@link image_default_color}
+ *
+ * Value can also be a string, one or more character from 'TBLR' (top, bottom, left and right)
+ * If set as a string, it determines in which side of the space the image is displayed.
+ * By default, the image is displayed in the center, i.e. it fills the remaining space equally on both sides
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var mixed
+ */
+ var $image_ratio_fill;
+
+ /**
+ * Set this variable to a number of pixels so that {@link image_x} and {@link image_y} are the best match possible
+ *
+ * The image will be resized to have approximatively the number of pixels
+ * The aspect ratio wil be conserved
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var mixed
+ */
+ var $image_ratio_pixels;
+
+ /**
+ * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y},
+ * but only if original image is bigger
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var bool
+ */
+ var $image_ratio_no_zoom_in;
+
+ /**
+ * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y},
+ * but only if original image is smaller
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var bool
+ */
+ var $image_ratio_no_zoom_out;
+
+ /**
+ * Set this variable to calculate {@link image_x} automatically , using {@link image_y} and conserving ratio
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var bool
+ */
+ var $image_ratio_x;
+
+ /**
+ * Set this variable to calculate {@link image_y} automatically , using {@link image_x} and conserving ratio
+ *
+ * Default value is false
+ *
+ * @access public
+ * @var bool
+ */
+ var $image_ratio_y;
+
+ /**
+ * Set this variable to set a maximum image width, above which the upload will be invalid
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_max_width;
+
+ /**
+ * Set this variable to set a maximum image height, above which the upload will be invalid
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_max_height;
+
+ /**
+ * Set this variable to set a maximum number of pixels for an image, above which the upload will be invalid
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var long
+ */
+ var $image_max_pixels;
+
+ /**
+ * Set this variable to set a maximum image aspect ratio, above which the upload will be invalid
+ *
+ * Note that ratio = width / height
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var float
+ */
+ var $image_max_ratio;
+
+ /**
+ * Set this variable to set a minimum image width, below which the upload will be invalid
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_min_width;
+
+ /**
+ * Set this variable to set a minimum image height, below which the upload will be invalid
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_min_height;
+
+ /**
+ * Set this variable to set a minimum number of pixels for an image, below which the upload will be invalid
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var long
+ */
+ var $image_min_pixels;
+
+ /**
+ * Set this variable to set a minimum image aspect ratio, below which the upload will be invalid
+ *
+ * Note that ratio = width / height
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var float
+ */
+ var $image_min_ratio;
+
+ /**
+ * Quality of JPEG created/converted destination image
+ *
+ * Default value is 85
+ *
+ * @access public
+ * @var integer
+ */
+ var $jpeg_quality;
+
+ /**
+ * Determines the quality of the JPG image to fit a desired file size
+ *
+ * Value is in bytes. The JPG quality will be set between 1 and 100%
+ * The calculations are approximations.
+ *
+ * Default value is null (no calculations)
+ *
+ * @access public
+ * @var integer
+ */
+ var $jpeg_size;
+
+ /**
+ * Preserve transparency when resizing or converting an image (deprecated)
+ *
+ * Default value is automatically set to true for transparent GIFs
+ * This setting is now deprecated
+ *
+ * @access public
+ * @var integer
+ */
+ var $preserve_transparency;
+
+ /**
+ * Flag set to true when the image is transparent
+ *
+ * This is actually used only for transparent GIFs
+ *
+ * @access public
+ * @var boolean
+ */
+ var $image_is_transparent;
+
+ /**
+ * Transparent color in a palette
+ *
+ * This is actually used only for transparent GIFs
+ *
+ * @access public
+ * @var boolean
+ */
+ var $image_transparent_color;
+
+ /**
+ * Background color, used to paint transparent areas with
+ *
+ * If set, it will forcibly remove transparency by painting transparent areas with the color
+ * This setting will fill in all transparent areas in PNG and GIF, as opposed to {@link image_default_color}
+ * which will do so only in BMP, JPEG, and alpha transparent areas in transparent GIFs
+ * This setting overrides {@link image_default_color}
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var string
+ */
+ var $image_background_color;
+
+ /**
+ * Default color for non alpha-transparent images
+ *
+ * This setting is to be used to define a background color for semi transparent areas
+ * of an alpha transparent when the output format doesn't support alpha transparency
+ * This is useful when, from an alpha transparent PNG image, or an image with alpha transparent features
+ * if you want to output it as a transparent GIFs for instance, you can set a blending color for transparent areas
+ * If you output in JPEG or BMP, this color will be used to fill in the previously transparent areas
+ *
+ * The default color white
+ *
+ * @access public
+ * @var boolean
+ */
+ var $image_default_color;
+
+ /**
+ * Flag set to true when the image is not true color
+ *
+ * @access public
+ * @var boolean
+ */
+ var $image_is_palette;
+
+ /**
+ * Corrects the image brightness
+ *
+ * Value can range between -127 and 127
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_brightness;
+
+ /**
+ * Corrects the image contrast
+ *
+ * Value can range between -127 and 127
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_contrast;
+
+ /**
+ * Applies threshold filter
+ *
+ * Value can range between -127 and 127
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_threshold;
+
+ /**
+ * Applies a tint on the image
+ *
+ * Value is an hexadecimal color, such as #FFFFFF
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_tint_color;
+
+ /**
+ * Applies a colored overlay on the image
+ *
+ * Value is an hexadecimal color, such as #FFFFFF
+ *
+ * To use with {@link image_overlay_percent}
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_overlay_color;
+
+ /**
+ * Sets the percentage for the colored overlay
+ *
+ * Value is a percentage, as an integer between 0 and 100
+ *
+ * Unless used with {@link image_overlay_color}, this setting has no effect
+ *
+ * Default value is 50
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_overlay_percent;
+
+ /**
+ * Inverts the color of an image
+ *
+ * Default value is FALSE
+ *
+ * @access public
+ * @var boolean;
+ */
+ var $image_negative;
+
+ /**
+ * Turns the image into greyscale
+ *
+ * Default value is FALSE
+ *
+ * @access public
+ * @var boolean;
+ */
+ var $image_greyscale;
+
+ /**
+ * Adds a text label on the image
+ *
+ * Value is a string, any text. Text will not word-wrap, although you can use breaklines in your text "\n"
+ *
+ * If set, this setting allow the use of all other settings starting with image_text_
+ *
+ * Replacement tokens can be used in the string:
+ *
+ * The tokens must be enclosed in square brackets: [dst_x] will be replaced by the width of the picture
+ *
+ * Default value is null
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_text;
+
+ /**
+ * Sets the text direction for the text label
+ *
+ * Value is either 'h' or 'v', as in horizontal and vertical
+ *
+ * Default value is h (horizontal)
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_text_direction;
+
+ /**
+ * Sets the text color for the text label
+ *
+ * Value is an hexadecimal color, such as #FFFFFF
+ *
+ * Default value is #FFFFFF (white)
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_text_color;
+
+ /**
+ * Sets the text visibility in the text label
+ *
+ * Value is a percentage, as an integer between 0 and 100
+ *
+ * Default value is 100
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_percent;
+
+ /**
+ * Sets the text background color for the text label
+ *
+ * Value is an hexadecimal color, such as #FFFFFF
+ *
+ * Default value is null (no background)
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_text_background;
+
+ /**
+ * Sets the text background visibility in the text label
+ *
+ * Value is a percentage, as an integer between 0 and 100
+ *
+ * Default value is 100
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_background_percent;
+
+ /**
+ * Sets the text font in the text label
+ *
+ * Value is a an integer between 1 and 5 for GD built-in fonts. 1 is the smallest font, 5 the biggest
+ * Value can also be a string, which represents the path to a GDF font. The font will be loaded into GD, and used as a built-in font.
+ *
+ * Default value is 5
+ *
+ * @access public
+ * @var mixed;
+ */
+ var $image_text_font;
+
+ /**
+ * Sets the text label position within the image
+ *
+ * Value is one or two out of 'TBLR' (top, bottom, left, right)
+ *
+ * The positions are as following:
+ *
+ * TL T TR
+ * L R
+ * BL B BR
+ *
+ *
+ * Default value is null (centered, horizontal and vertical)
+ *
+ * Note that is {@link image_text_x} and {@link image_text_y} are used, this setting has no effect
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_text_position;
+
+ /**
+ * Sets the text label absolute X position within the image
+ *
+ * Value is in pixels, representing the distance between the left of the image and the label
+ * If a negative value is used, it will represent the distance between the right of the image and the label
+ *
+ * Default value is null (so {@link image_text_position} is used)
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_x;
+
+ /**
+ * Sets the text label absolute Y position within the image
+ *
+ * Value is in pixels, representing the distance between the top of the image and the label
+ * If a negative value is used, it will represent the distance between the bottom of the image and the label
+ *
+ * Default value is null (so {@link image_text_position} is used)
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_y;
+
+ /**
+ * Sets the text label padding
+ *
+ * Value is in pixels, representing the distance between the text and the label background border
+ *
+ * Default value is 0
+ *
+ * This setting can be overriden by {@link image_text_padding_x} and {@link image_text_padding_y}
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_padding;
+
+ /**
+ * Sets the text label horizontal padding
+ *
+ * Value is in pixels, representing the distance between the text and the left and right label background borders
+ *
+ * Default value is null
+ *
+ * If set, this setting overrides the horizontal part of {@link image_text_padding}
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_padding_x;
+
+ /**
+ * Sets the text label vertical padding
+ *
+ * Value is in pixels, representing the distance between the text and the top and bottom label background borders
+ *
+ * Default value is null
+ *
+ * If set, his setting overrides the vertical part of {@link image_text_padding}
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_padding_y;
+
+ /**
+ * Sets the text alignment
+ *
+ * Value is a string, which can be either 'L', 'C' or 'R'
+ *
+ * Default value is 'C'
+ *
+ * This setting is relevant only if the text has several lines.
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_text_alignment;
+
+ /**
+ * Sets the text line spacing
+ *
+ * Value is an integer, in pixels
+ *
+ * Default value is 0
+ *
+ * This setting is relevant only if the text has several lines.
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_text_line_spacing;
+
+ /**
+ * Sets the height of the reflection
+ *
+ * Value is an integer in pixels, or a string which format can be in pixels or percentage.
+ * For instance, values can be : 40, '40', '40px' or '40%'
+ *
+ * Default value is null, no reflection
+ *
+ * @access public
+ * @var mixed;
+ */
+ var $image_reflection_height;
+
+ /**
+ * Sets the space between the source image and its relection
+ *
+ * Value is an integer in pixels, which can be negative
+ *
+ * Default value is 2
+ *
+ * This setting is relevant only if {@link image_reflection_height} is set
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_reflection_space;
+
+ /**
+ * Sets the color of the reflection background (deprecated)
+ *
+ * Value is an hexadecimal color, such as #FFFFFF
+ *
+ * Default value is #FFFFFF
+ *
+ * This setting is relevant only if {@link image_reflection_height} is set
+ *
+ * This setting is now deprecated in favor of {@link image_default_color}
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_reflection_color;
+
+ /**
+ * Sets the initial opacity of the reflection
+ *
+ * Value is an integer between 0 (no opacity) and 100 (full opacity).
+ * The reflection will start from {@link image_reflection_opacity} and end up at 0
+ *
+ * Default value is 60
+ *
+ * This setting is relevant only if {@link image_reflection_height} is set
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_reflection_opacity;
+
+ /**
+ * Flips the image vertically or horizontally
+ *
+ * Value is either 'h' or 'v', as in horizontal and vertical
+ *
+ * Default value is null (no flip)
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_flip;
+
+ /**
+ * Rotates the image by increments of 45 degrees
+ *
+ * Value is either 90, 180 or 270
+ *
+ * Default value is null (no rotation)
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_rotate;
+
+ /**
+ * Crops an image
+ *
+ * Values are four dimensions, or two, or one (CSS style)
+ * They represent the amount cropped top, right, bottom and left.
+ * These values can either be in an array, or a space separated string.
+ * Each value can be in pixels (with or without 'px'), or percentage (of the source image)
+ *
+ * For instance, are valid:
+ *
+ * $foo->image_crop = 20 OR array(20);
+ * $foo->image_crop = '20px' OR array('20px');
+ * $foo->image_crop = '20 40' OR array('20', 40);
+ * $foo->image_crop = '-20 25%' OR array(-20, '25%');
+ * $foo->image_crop = '20px 25%' OR array('20px', '25%');
+ * $foo->image_crop = '20% 25%' OR array('20%', '25%');
+ * $foo->image_crop = '20% 25% 10% 30%' OR array('20%', '25%', '10%', '30%');
+ * $foo->image_crop = '20px 25px 2px 2px' OR array('20px', '25%px', '2px', '2px');
+ * $foo->image_crop = '20 25% 40px 10%' OR array(20, '25%', '40px', '10%');
+ *
+ *
+ * If a value is negative, the image will be expanded, and the extra parts will be filled with black
+ *
+ * Default value is null (no cropping)
+ *
+ * @access public
+ * @var string OR array;
+ */
+ var $image_crop;
+
+ /**
+ * Crops an image, before an eventual resizing
+ *
+ * See {@link image_crop} for valid formats
+ *
+ * Default value is null (no cropping)
+ *
+ * @access public
+ * @var string OR array;
+ */
+ var $image_precrop;
+
+ /**
+ * Adds a bevel border on the image
+ *
+ * Value is a positive integer, representing the thickness of the bevel
+ *
+ * If the bevel colors are the same as the background, it makes a fade out effect
+ *
+ * Default value is null (no bevel)
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_bevel;
+
+ /**
+ * Top and left bevel color
+ *
+ * Value is a color, in hexadecimal format
+ * This setting is used only if {@link image_bevel} is set
+ *
+ * Default value is #FFFFFF
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_bevel_color1;
+
+ /**
+ * Right and bottom bevel color
+ *
+ * Value is a color, in hexadecimal format
+ * This setting is used only if {@link image_bevel} is set
+ *
+ * Default value is #000000
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_bevel_color2;
+
+ /**
+ * Adds a single-color border on the outer of the image
+ *
+ * Values are four dimensions, or two, or one (CSS style)
+ * They represent the border thickness top, right, bottom and left.
+ * These values can either be in an array, or a space separated string.
+ * Each value can be in pixels (with or without 'px'), or percentage (of the source image)
+ *
+ * See {@link image_crop} for valid formats
+ *
+ * If a value is negative, the image will be cropped.
+ * Note that the dimensions of the picture will be increased by the borders' thickness
+ *
+ * Default value is null (no border)
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_border;
+
+ /**
+ * Border color
+ *
+ * Value is a color, in hexadecimal format.
+ * This setting is used only if {@link image_border} is set
+ *
+ * Default value is #FFFFFF
+ *
+ * @access public
+ * @var string;
+ */
+ var $image_border_color;
+
+ /**
+ * Adds a multi-color frame on the outer of the image
+ *
+ * Value is an integer. Two values are possible for now:
+ * 1 for flat border, meaning that the frame is mirrored horizontally and vertically
+ * 2 for crossed border, meaning that the frame will be inversed, as in a bevel effect
+ *
+ * The frame will be composed of colored lines set in {@link image_frame_colors}
+ *
+ * Note that the dimensions of the picture will be increased by the borders' thickness
+ *
+ * Default value is null (no frame)
+ *
+ * @access public
+ * @var integer
+ */
+ var $image_frame;
+
+ /**
+ * Sets the colors used to draw a frame
+ *
+ * Values is a list of n colors in hexadecimal format.
+ * These values can either be in an array, or a space separated string.
+ *
+ * The colors are listed in the following order: from the outset of the image to its center
+ *
+ * For instance, are valid:
+ *