Added:
trunk/phpshop1/WEB-INF/modules/ticket/lib/
trunk/phpshop1/WEB-INF/modules/ticket/lib/ps_include.inc
Log:
see http://code.google.com/p/phpshop/wiki/phpShop1_update -
Updating phpShop 0.81 - adding the ticket module -
Added: trunk/phpshop1/WEB-INF/modules/ticket/lib/ps_include.inc
==============================================================================
--- (empty file)
+++ trunk/phpshop1/WEB-INF/modules/ticket/lib/ps_include.inc Thu Oct 16
01:16:39 2008
@@ -0,0 +1,19 @@
+<?php
+/*
+ *
+ * Copyright (c) uli (u...@ulisoft.com) All rights reserved.
+ * Distributed under the phpShop Public License (pSPL) Version 1.0.
+ *
+ *
+ */
+
+
+// Load classes
+require_once("ticket/lib/ps_ticket.inc");
+require_once("ticket/lib/ps_ticket_status.inc");
+
+// Instantiate Classes
+$ps_ticket = new ps_ticket;
+$ps_ticket_status = new ps_ticket_status;
+
+?>