Changeset 934780
- Timestamp:
- 06/19/2014 12:48:11 AM (12 years ago)
- Location:
- orillacart/trunk
- Files:
-
- 1 added
- 3 edited
-
core/factory.php (modified) (1 diff)
-
core/mysqlidriver.php (added)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
orillacart/trunk/core/factory.php
r802008 r934780 5 5 class Factory { 6 6 7 static public function getDBO($type = 'mysql') { 8 7 static public function getDBO($type = null) { 8 9 global $wpdb; 10 11 if($type == null){ 12 13 if ( ! isset($wpdb->use_mysqli) || ! $wpdb->use_mysqli ){ 14 $type = "mysql"; 15 }else{ 16 17 $type = "mysqliDriver"; 18 19 } 20 21 } 22 9 23 if (class_exists($type) && method_exists($type, 'getInstance')) 10 24 return call_user_func($type . '::getInstance'); -
orillacart/trunk/main.php
r932501 r934780 3 3 /* 4 4 Plugin Name: OrillaCart 5 Version: 1.2. 15 Version: 1.2.2 6 6 Description: ecommerce solution for WordPress 7 7 Plugin URI: http://orillacart.com … … 17 17 define("ORILLA_FRAMEWORK_BASE",realpath(dirname(__FILE__))); 18 18 define("ORILLA_FRAMEWORK_CORE",realpath(dirname(__FILE__).DS."core")); 19 define("ORILLACART_VERSION","1.2. 1");19 define("ORILLACART_VERSION","1.2.2"); 20 20 21 21 define("ORILLA_FRAMEWORK_PUBLIC_KEY",realpath(dirname(__FILE__).DS."core".DS."public_key".DS."orillacart.pub")); -
orillacart/trunk/readme.txt
r932501 r934780 1 === Orilla Cart - eCommerce ===1 === Orilla Cart - eCommerce === 2 2 Contributors: orillacart 3 3 Tags: ecommerce plugin, ecommerce, e-commerce, attributes, variations, commerce, wordpress ecommerce, product, store, sales, sell, shop, shopping, cart, checkout, downloadable, digital, inventory, shipping, tax … … 102 102 == Changelog == 103 103 104 = 1.2.2 - 19.06.2014 = 105 1. MySQLI Driver added 106 104 107 = 1.2.1 - 15.06.2014 = 105 108 1. Compatibility with warp and gantry based themes.
Note: See TracChangeset
for help on using the changeset viewer.