Version Description
- 2018-07-18
Download this release
Release Info
| Developer | codeinwp |
| Plugin | |
| Version | 3.4.7 |
| Comparing to | |
| See all releases | |
Code changes from version 3.4.6 to 3.4.7
- CHANGELOG.md +4 -0
- includes/admin/controllers/class-wppr-admin-render-controller.php +1 -1
- includes/class-wppr.php +1 -1
- includes/public/layouts/default.php +2 -5
- package-lock.json +51 -26
- readme.md +5 -0
- readme.txt +5 -0
- themeisle-hash.json +1 -1
- vendor/autoload.php +1 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_real.php +5 -5
- vendor/composer/autoload_real_52.php +3 -3
- wp-product-review.php +2 -2
CHANGELOG.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
| 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
### v3.4.6 - 2018-07-12
|
| 3 |
**Changes:**
|
| 4 |
* Added RTL compatibility
|
| 1 |
|
| 2 |
+
### v3.4.7 - 2018-07-18
|
| 3 |
+
**Changes:**
|
| 4 |
+
* Fixed alignment issue with the price on the first template
|
| 5 |
+
|
| 6 |
### v3.4.6 - 2018-07-12
|
| 7 |
**Changes:**
|
| 8 |
* Added RTL compatibility
|
includes/admin/controllers/class-wppr-admin-render-controller.php
CHANGED
|
@@ -65,7 +65,7 @@ class WPPR_Admin_Render_Controller {
|
|
| 65 |
public function retrive_template( $name, $model = false ) {
|
| 66 |
/*
|
| 67 |
Let's check for user templates inside the wppr folder in the theme.
|
| 68 |
-
|
| 69 |
/wppr/<name>.php
|
| 70 |
/wppr/<name>.css
|
| 71 |
/wppr/<name>.png
|
| 65 |
public function retrive_template( $name, $model = false ) {
|
| 66 |
/*
|
| 67 |
Let's check for user templates inside the wppr folder in the theme.
|
| 68 |
+
We expect the following files
|
| 69 |
/wppr/<name>.php
|
| 70 |
/wppr/<name>.css
|
| 71 |
/wppr/<name>.png
|
includes/class-wppr.php
CHANGED
|
@@ -67,7 +67,7 @@ class WPPR {
|
|
| 67 |
*/
|
| 68 |
public function __construct() {
|
| 69 |
$this->plugin_name = 'wppr';
|
| 70 |
-
$this->version = '3.4.
|
| 71 |
|
| 72 |
$this->load_dependencies();
|
| 73 |
$this->set_locale();
|
| 67 |
*/
|
| 68 |
public function __construct() {
|
| 69 |
$this->plugin_name = 'wppr';
|
| 70 |
+
$this->version = '3.4.7';
|
| 71 |
|
| 72 |
$this->load_dependencies();
|
| 73 |
$this->set_locale();
|
includes/public/layouts/default.php
CHANGED
|
@@ -30,11 +30,8 @@ $rating_10 = round( $review_object->get_rating(), 0 ) / 10;
|
|
| 30 |
<section id="review-statistics" class="article-section">
|
| 31 |
<div class="review-wrap-up cwpr_clearfix">
|
| 32 |
<div class="cwpr-review-top cwpr_clearfix">
|
| 33 |
-
<
|
| 34 |
-
|
| 35 |
-
</span>
|
| 36 |
-
<span class="cwp-item-price cwp-item"></span>
|
| 37 |
-
<span><?php echo esc_html( empty( $price_raw ) ? '' : $price_raw ); ?></span>
|
| 38 |
</div><!-- end .cwpr-review-top -->
|
| 39 |
<div class="review-wu-content cwpr_clearfix">
|
| 40 |
<div class="review-wu-left">
|
| 30 |
<section id="review-statistics" class="article-section">
|
| 31 |
<div class="review-wrap-up cwpr_clearfix">
|
| 32 |
<div class="cwpr-review-top cwpr_clearfix">
|
| 33 |
+
<h2 class="cwp-item"><?php echo esc_html( $review_object->get_name() ); ?></h2>
|
| 34 |
+
<span class="cwp-item-price cwp-item"><?php echo esc_html( empty( $price_raw ) ? '' : $price_raw ); ?></span>
|
|
|
|
|
|
|
|
|
|
| 35 |
</div><!-- end .cwpr-review-top -->
|
| 36 |
<div class="review-wu-content cwpr_clearfix">
|
| 37 |
<div class="review-wu-left">
|
package-lock.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
{
|
| 2 |
"name": "wp-product-review",
|
| 3 |
-
"version": "3.4.
|
| 4 |
"lockfileVersion": 1,
|
| 5 |
"requires": true,
|
| 6 |
"dependencies": {
|
|
@@ -228,7 +228,7 @@
|
|
| 228 |
"dev": true,
|
| 229 |
"requires": {
|
| 230 |
"browserslist": "1.7.7",
|
| 231 |
-
"caniuse-db": "1.0.
|
| 232 |
"normalize-range": "0.1.2",
|
| 233 |
"num2fraction": "1.2.2",
|
| 234 |
"postcss": "5.2.18",
|
|
@@ -254,6 +254,12 @@
|
|
| 254 |
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
|
| 255 |
"dev": true
|
| 256 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 257 |
"bcrypt-pbkdf": {
|
| 258 |
"version": "1.0.2",
|
| 259 |
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
|
|
@@ -411,10 +417,20 @@
|
|
| 411 |
"integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
|
| 412 |
"dev": true,
|
| 413 |
"requires": {
|
| 414 |
-
"caniuse-db": "1.0.
|
| 415 |
"electron-to-chromium": "1.3.52"
|
| 416 |
}
|
| 417 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 418 |
"buffer-alloc": {
|
| 419 |
"version": "1.2.0",
|
| 420 |
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
|
@@ -539,9 +555,9 @@
|
|
| 539 |
}
|
| 540 |
},
|
| 541 |
"caniuse-db": {
|
| 542 |
-
"version": "1.0.
|
| 543 |
-
"resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.
|
| 544 |
-
"integrity": "sha1-
|
| 545 |
"dev": true
|
| 546 |
},
|
| 547 |
"capture-stack-trace": {
|
|
@@ -822,10 +838,13 @@
|
|
| 822 |
"dev": true
|
| 823 |
},
|
| 824 |
"crc": {
|
| 825 |
-
"version": "3.
|
| 826 |
-
"resolved": "https://registry.npmjs.org/crc/-/crc-3.
|
| 827 |
-
"integrity": "
|
| 828 |
-
"dev": true
|
|
|
|
|
|
|
|
|
|
| 829 |
},
|
| 830 |
"crc32-stream": {
|
| 831 |
"version": "2.0.0",
|
|
@@ -833,7 +852,7 @@
|
|
| 833 |
"integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=",
|
| 834 |
"dev": true,
|
| 835 |
"requires": {
|
| 836 |
-
"crc": "3.
|
| 837 |
"readable-stream": "2.3.6"
|
| 838 |
}
|
| 839 |
},
|
|
@@ -1711,7 +1730,7 @@
|
|
| 1711 |
"requires": {
|
| 1712 |
"asynckit": "0.4.0",
|
| 1713 |
"combined-stream": "1.0.6",
|
| 1714 |
-
"mime-types": "2.1.
|
| 1715 |
}
|
| 1716 |
},
|
| 1717 |
"fs-constants": {
|
|
@@ -3624,6 +3643,12 @@
|
|
| 3624 |
"safer-buffer": "2.1.2"
|
| 3625 |
}
|
| 3626 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3627 |
"iltorb": {
|
| 3628 |
"version": "1.3.10",
|
| 3629 |
"resolved": "https://registry.npmjs.org/iltorb/-/iltorb-1.3.10.tgz",
|
|
@@ -4037,9 +4062,9 @@
|
|
| 4037 |
}
|
| 4038 |
},
|
| 4039 |
"js-base64": {
|
| 4040 |
-
"version": "2.4.
|
| 4041 |
-
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.
|
| 4042 |
-
"integrity": "sha512-
|
| 4043 |
"dev": true
|
| 4044 |
},
|
| 4045 |
"js-yaml": {
|
|
@@ -4530,18 +4555,18 @@
|
|
| 4530 |
}
|
| 4531 |
},
|
| 4532 |
"mime-db": {
|
| 4533 |
-
"version": "1.
|
| 4534 |
-
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.
|
| 4535 |
-
"integrity": "sha512-
|
| 4536 |
"dev": true
|
| 4537 |
},
|
| 4538 |
"mime-types": {
|
| 4539 |
-
"version": "2.1.
|
| 4540 |
-
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.
|
| 4541 |
-
"integrity": "sha512-
|
| 4542 |
"dev": true,
|
| 4543 |
"requires": {
|
| 4544 |
-
"mime-db": "1.
|
| 4545 |
}
|
| 4546 |
},
|
| 4547 |
"mimic-response": {
|
|
@@ -4703,7 +4728,7 @@
|
|
| 4703 |
"is-typedarray": "1.0.0",
|
| 4704 |
"isstream": "0.1.2",
|
| 4705 |
"json-stringify-safe": "5.0.1",
|
| 4706 |
-
"mime-types": "2.1.
|
| 4707 |
"oauth-sign": "0.8.2",
|
| 4708 |
"performance-now": "0.2.0",
|
| 4709 |
"qs": "6.4.0",
|
|
@@ -5029,7 +5054,7 @@
|
|
| 5029 |
"dev": true,
|
| 5030 |
"requires": {
|
| 5031 |
"chalk": "1.1.3",
|
| 5032 |
-
"js-base64": "2.4.
|
| 5033 |
"source-map": "0.5.7",
|
| 5034 |
"supports-color": "3.2.3"
|
| 5035 |
},
|
|
@@ -5359,7 +5384,7 @@
|
|
| 5359 |
"is-typedarray": "1.0.0",
|
| 5360 |
"isstream": "0.1.2",
|
| 5361 |
"json-stringify-safe": "5.0.1",
|
| 5362 |
-
"mime-types": "2.1.
|
| 5363 |
"oauth-sign": "0.8.2",
|
| 5364 |
"performance-now": "2.1.0",
|
| 5365 |
"qs": "6.5.2",
|
|
@@ -5401,7 +5426,7 @@
|
|
| 5401 |
"requires": {
|
| 5402 |
"asynckit": "0.4.0",
|
| 5403 |
"combined-stream": "1.0.6",
|
| 5404 |
-
"mime-types": "2.1.
|
| 5405 |
}
|
| 5406 |
},
|
| 5407 |
"har-schema": {
|
| 1 |
{
|
| 2 |
"name": "wp-product-review",
|
| 3 |
+
"version": "3.4.7",
|
| 4 |
"lockfileVersion": 1,
|
| 5 |
"requires": true,
|
| 6 |
"dependencies": {
|
| 228 |
"dev": true,
|
| 229 |
"requires": {
|
| 230 |
"browserslist": "1.7.7",
|
| 231 |
+
"caniuse-db": "1.0.30000867",
|
| 232 |
"normalize-range": "0.1.2",
|
| 233 |
"num2fraction": "1.2.2",
|
| 234 |
"postcss": "5.2.18",
|
| 254 |
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
|
| 255 |
"dev": true
|
| 256 |
},
|
| 257 |
+
"base64-js": {
|
| 258 |
+
"version": "1.3.0",
|
| 259 |
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
|
| 260 |
+
"integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==",
|
| 261 |
+
"dev": true
|
| 262 |
+
},
|
| 263 |
"bcrypt-pbkdf": {
|
| 264 |
"version": "1.0.2",
|
| 265 |
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
|
| 417 |
"integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=",
|
| 418 |
"dev": true,
|
| 419 |
"requires": {
|
| 420 |
+
"caniuse-db": "1.0.30000867",
|
| 421 |
"electron-to-chromium": "1.3.52"
|
| 422 |
}
|
| 423 |
},
|
| 424 |
+
"buffer": {
|
| 425 |
+
"version": "5.1.0",
|
| 426 |
+
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.1.0.tgz",
|
| 427 |
+
"integrity": "sha512-YkIRgwsZwJWTnyQrsBTWefizHh+8GYj3kbL1BTiAQ/9pwpino0G7B2gp5tx/FUBqUlvtxV85KNR3mwfAtv15Yw==",
|
| 428 |
+
"dev": true,
|
| 429 |
+
"requires": {
|
| 430 |
+
"base64-js": "1.3.0",
|
| 431 |
+
"ieee754": "1.1.12"
|
| 432 |
+
}
|
| 433 |
+
},
|
| 434 |
"buffer-alloc": {
|
| 435 |
"version": "1.2.0",
|
| 436 |
"resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz",
|
| 555 |
}
|
| 556 |
},
|
| 557 |
"caniuse-db": {
|
| 558 |
+
"version": "1.0.30000867",
|
| 559 |
+
"resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000867.tgz",
|
| 560 |
+
"integrity": "sha1-tVpuz6wxB5iJQMnH3+GGYxUxLJc=",
|
| 561 |
"dev": true
|
| 562 |
},
|
| 563 |
"capture-stack-trace": {
|
| 838 |
"dev": true
|
| 839 |
},
|
| 840 |
"crc": {
|
| 841 |
+
"version": "3.7.0",
|
| 842 |
+
"resolved": "https://registry.npmjs.org/crc/-/crc-3.7.0.tgz",
|
| 843 |
+
"integrity": "sha512-ZwmUex488OBjSVOMxnR/dIa1yxisBMJNEi+UxzXpKhax8MPsQtoRQtl5Qgo+W7pcSVkRXa3BEVjaniaWKtvKvw==",
|
| 844 |
+
"dev": true,
|
| 845 |
+
"requires": {
|
| 846 |
+
"buffer": "5.1.0"
|
| 847 |
+
}
|
| 848 |
},
|
| 849 |
"crc32-stream": {
|
| 850 |
"version": "2.0.0",
|
| 852 |
"integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=",
|
| 853 |
"dev": true,
|
| 854 |
"requires": {
|
| 855 |
+
"crc": "3.7.0",
|
| 856 |
"readable-stream": "2.3.6"
|
| 857 |
}
|
| 858 |
},
|
| 1730 |
"requires": {
|
| 1731 |
"asynckit": "0.4.0",
|
| 1732 |
"combined-stream": "1.0.6",
|
| 1733 |
+
"mime-types": "2.1.19"
|
| 1734 |
}
|
| 1735 |
},
|
| 1736 |
"fs-constants": {
|
| 3643 |
"safer-buffer": "2.1.2"
|
| 3644 |
}
|
| 3645 |
},
|
| 3646 |
+
"ieee754": {
|
| 3647 |
+
"version": "1.1.12",
|
| 3648 |
+
"resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz",
|
| 3649 |
+
"integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==",
|
| 3650 |
+
"dev": true
|
| 3651 |
+
},
|
| 3652 |
"iltorb": {
|
| 3653 |
"version": "1.3.10",
|
| 3654 |
"resolved": "https://registry.npmjs.org/iltorb/-/iltorb-1.3.10.tgz",
|
| 4062 |
}
|
| 4063 |
},
|
| 4064 |
"js-base64": {
|
| 4065 |
+
"version": "2.4.8",
|
| 4066 |
+
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.8.tgz",
|
| 4067 |
+
"integrity": "sha512-hm2nYpDrwoO/OzBhdcqs/XGT6XjSuSSCVEpia+Kl2J6x4CYt5hISlVL/AYU1khoDXv0AQVgxtdJySb9gjAn56Q==",
|
| 4068 |
"dev": true
|
| 4069 |
},
|
| 4070 |
"js-yaml": {
|
| 4555 |
}
|
| 4556 |
},
|
| 4557 |
"mime-db": {
|
| 4558 |
+
"version": "1.35.0",
|
| 4559 |
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz",
|
| 4560 |
+
"integrity": "sha512-JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==",
|
| 4561 |
"dev": true
|
| 4562 |
},
|
| 4563 |
"mime-types": {
|
| 4564 |
+
"version": "2.1.19",
|
| 4565 |
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz",
|
| 4566 |
+
"integrity": "sha512-P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==",
|
| 4567 |
"dev": true,
|
| 4568 |
"requires": {
|
| 4569 |
+
"mime-db": "1.35.0"
|
| 4570 |
}
|
| 4571 |
},
|
| 4572 |
"mimic-response": {
|
| 4728 |
"is-typedarray": "1.0.0",
|
| 4729 |
"isstream": "0.1.2",
|
| 4730 |
"json-stringify-safe": "5.0.1",
|
| 4731 |
+
"mime-types": "2.1.19",
|
| 4732 |
"oauth-sign": "0.8.2",
|
| 4733 |
"performance-now": "0.2.0",
|
| 4734 |
"qs": "6.4.0",
|
| 5054 |
"dev": true,
|
| 5055 |
"requires": {
|
| 5056 |
"chalk": "1.1.3",
|
| 5057 |
+
"js-base64": "2.4.8",
|
| 5058 |
"source-map": "0.5.7",
|
| 5059 |
"supports-color": "3.2.3"
|
| 5060 |
},
|
| 5384 |
"is-typedarray": "1.0.0",
|
| 5385 |
"isstream": "0.1.2",
|
| 5386 |
"json-stringify-safe": "5.0.1",
|
| 5387 |
+
"mime-types": "2.1.19",
|
| 5388 |
"oauth-sign": "0.8.2",
|
| 5389 |
"performance-now": "2.1.0",
|
| 5390 |
"qs": "6.5.2",
|
| 5426 |
"requires": {
|
| 5427 |
"asynckit": "0.4.0",
|
| 5428 |
"combined-stream": "1.0.6",
|
| 5429 |
+
"mime-types": "2.1.19"
|
| 5430 |
}
|
| 5431 |
},
|
| 5432 |
"har-schema": {
|
readme.md
CHANGED
|
@@ -67,6 +67,11 @@ If you wanna learn more about the <a href="http://www.codeinwp.com/blog/fastest-
|
|
| 67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
| 68 |
|
| 69 |
## Changelog ##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
### 3.4.6 - 2018-07-12 ###
|
| 71 |
|
| 72 |
* Added RTL compatibility
|
| 67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
| 68 |
|
| 69 |
## Changelog ##
|
| 70 |
+
### 3.4.7 - 2018-07-18 ###
|
| 71 |
+
|
| 72 |
+
* Fixed alignment issue with the price on the first template
|
| 73 |
+
|
| 74 |
+
|
| 75 |
### 3.4.6 - 2018-07-12 ###
|
| 76 |
|
| 77 |
* Added RTL compatibility
|
readme.txt
CHANGED
|
@@ -67,6 +67,11 @@ If you wanna learn more about the <a href="http://www.codeinwp.com/blog/fastest-
|
|
| 67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
| 68 |
|
| 69 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
= 3.4.6 - 2018-07-12 =
|
| 71 |
|
| 72 |
* Added RTL compatibility
|
| 67 |
* fr_FR translation by Jacques Soule of http://wordpress-pour-vous.com/
|
| 68 |
|
| 69 |
== Changelog ==
|
| 70 |
+
= 3.4.7 - 2018-07-18 =
|
| 71 |
+
|
| 72 |
+
* Fixed alignment issue with the price on the first template
|
| 73 |
+
|
| 74 |
+
|
| 75 |
= 3.4.6 - 2018-07-12 =
|
| 76 |
|
| 77 |
* Added RTL compatibility
|
themeisle-hash.json
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
{"class-wppr-autoloader.php":"96be4219e0b4502f5698c5a8b084d108","index.php":"c76772901fa1b2b14aa3ba32d7773c8a","uninstall.php":"7c6d36652e8dcf013f2c246f4a289acf","wp-product-review.php":"
|
| 1 |
+
{"class-wppr-autoloader.php":"96be4219e0b4502f5698c5a8b084d108","index.php":"c76772901fa1b2b14aa3ba32d7773c8a","uninstall.php":"7c6d36652e8dcf013f2c246f4a289acf","wp-product-review.php":"323f80e4a98b9d2cd2eb53e3590963fc"}
|
vendor/autoload.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once __DIR__ . '/composer' . '/autoload_real.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInitfa029691078f4becb3668d6919849dfe::getLoader();
|
vendor/autoload_52.php
CHANGED
|
@@ -4,4 +4,4 @@
|
|
| 4 |
|
| 5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
| 6 |
|
| 7 |
-
return
|
| 4 |
|
| 5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
| 6 |
|
| 7 |
+
return ComposerAutoloaderInit95b12a13fc39e0c76c64c5020e0c7260::getLoader();
|
vendor/composer/autoload_real.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
-
class
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit0a472b0cc09ccf3ef5e5ef72e22990b0
|
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
-
spl_autoload_register(array('
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
-
spl_autoload_unregister(array('
|
| 25 |
|
| 26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 27 |
foreach ($map as $namespace => $path) {
|
|
@@ -42,14 +42,14 @@ class ComposerAutoloaderInit0a472b0cc09ccf3ef5e5ef72e22990b0
|
|
| 42 |
|
| 43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 45 |
-
|
| 46 |
}
|
| 47 |
|
| 48 |
return $loader;
|
| 49 |
}
|
| 50 |
}
|
| 51 |
|
| 52 |
-
function
|
| 53 |
{
|
| 54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 55 |
require $file;
|
| 2 |
|
| 3 |
// autoload_real.php @generated by Composer
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInitfa029691078f4becb3668d6919849dfe
|
| 6 |
{
|
| 7 |
private static $loader;
|
| 8 |
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInitfa029691078f4becb3668d6919849dfe', 'loadClassLoader'), true, true);
|
| 23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitfa029691078f4becb3668d6919849dfe', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
| 27 |
foreach ($map as $namespace => $path) {
|
| 42 |
|
| 43 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
| 44 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
| 45 |
+
composerRequirefa029691078f4becb3668d6919849dfe($fileIdentifier, $file);
|
| 46 |
}
|
| 47 |
|
| 48 |
return $loader;
|
| 49 |
}
|
| 50 |
}
|
| 51 |
|
| 52 |
+
function composerRequirefa029691078f4becb3668d6919849dfe($fileIdentifier, $file)
|
| 53 |
{
|
| 54 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
| 55 |
require $file;
|
vendor/composer/autoload_real_52.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
| 4 |
|
| 5 |
-
class
|
| 6 |
private static $loader;
|
| 7 |
|
| 8 |
public static function loadClassLoader($class) {
|
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit90787c8ff60303a14d6974cecdf995a4 {
|
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
-
spl_autoload_register(array('
|
| 23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
| 24 |
-
spl_autoload_unregister(array('
|
| 25 |
|
| 26 |
$vendorDir = dirname(dirname(__FILE__));
|
| 27 |
$baseDir = dirname($vendorDir);
|
| 2 |
|
| 3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
| 4 |
|
| 5 |
+
class ComposerAutoloaderInit95b12a13fc39e0c76c64c5020e0c7260 {
|
| 6 |
private static $loader;
|
| 7 |
|
| 8 |
public static function loadClassLoader($class) {
|
| 19 |
return self::$loader;
|
| 20 |
}
|
| 21 |
|
| 22 |
+
spl_autoload_register(array('ComposerAutoloaderInit95b12a13fc39e0c76c64c5020e0c7260', 'loadClassLoader'), true /*, true */);
|
| 23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
| 24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInit95b12a13fc39e0c76c64c5020e0c7260', 'loadClassLoader'));
|
| 25 |
|
| 26 |
$vendorDir = dirname(dirname(__FILE__));
|
| 27 |
$baseDir = dirname($vendorDir);
|
wp-product-review.php
CHANGED
|
@@ -15,7 +15,7 @@
|
|
| 15 |
* Plugin Name: WP Product Review Lite
|
| 16 |
* Plugin URI: https://themeisle.com/plugins/wp-product-review/
|
| 17 |
* Description: The highest rated and most complete review plugin, now with rich snippets support. Easily turn your basic posts into in-depth reviews.
|
| 18 |
-
* Version: 3.4.
|
| 19 |
* Author: ThemeIsle
|
| 20 |
* Author URI: https://themeisle.com/
|
| 21 |
* Requires at least: 3.5
|
|
@@ -67,7 +67,7 @@ register_deactivation_hook( __FILE__, 'deactivate_wppr' );
|
|
| 67 |
*/
|
| 68 |
function run_wppr() {
|
| 69 |
|
| 70 |
-
define( 'WPPR_LITE_VERSION', '3.4.
|
| 71 |
define( 'WPPR_PATH', dirname( __FILE__ ) );
|
| 72 |
define( 'WPPR_SLUG', 'wppr' );
|
| 73 |
define( 'WPPR_UPSELL_LINK', 'https://themeisle.com/plugins/wp-product-review/' );
|
| 15 |
* Plugin Name: WP Product Review Lite
|
| 16 |
* Plugin URI: https://themeisle.com/plugins/wp-product-review/
|
| 17 |
* Description: The highest rated and most complete review plugin, now with rich snippets support. Easily turn your basic posts into in-depth reviews.
|
| 18 |
+
* Version: 3.4.7
|
| 19 |
* Author: ThemeIsle
|
| 20 |
* Author URI: https://themeisle.com/
|
| 21 |
* Requires at least: 3.5
|
| 67 |
*/
|
| 68 |
function run_wppr() {
|
| 69 |
|
| 70 |
+
define( 'WPPR_LITE_VERSION', '3.4.7' );
|
| 71 |
define( 'WPPR_PATH', dirname( __FILE__ ) );
|
| 72 |
define( 'WPPR_SLUG', 'wppr' );
|
| 73 |
define( 'WPPR_UPSELL_LINK', 'https://themeisle.com/plugins/wp-product-review/' );
|
